81 lines
2.0 KiB
C
81 lines
2.0 KiB
C
/*
|
|
* MSVFW32: (Compman, drawdib and video)
|
|
*
|
|
* utility functions to read and write values to the profile,
|
|
* using win.ini for Win16 or current user\software\microsoft\vfw\...
|
|
* in the registry for Win32
|
|
*/
|
|
|
|
#define MMPROFILECACHE 0 // Set to 1 to cache keys, 0 otherwise
|
|
|
|
#ifndef _WIN32
|
|
|
|
#define mmGetProfileIntA(app, value, default) \
|
|
GetProfileInt(app, value, default)
|
|
|
|
#define mmWriteProfileString(appname, valuename, pData) \
|
|
WriteProfileString(appname, valuename, pData)
|
|
|
|
#define mmGetProfileString(appname, valuename, pDefault, pResult, cbResult) \
|
|
GetProfileString(appname, valuename, pDefault, pResult, cbResult)
|
|
|
|
//#define mmAnsiToWide(lpwsz,lpsz,nChars) (lpsz)
|
|
//#define mmWideToAnsi(lpsz,lpwsz,nChars) (lpwsz)
|
|
|
|
#define CloseKeys()
|
|
|
|
#else
|
|
|
|
#ifdef DAYTONA
|
|
#undef MMPROFILECACHE
|
|
#define MMPROFILECACHE 1 // Set to 1 to cache keys, 0 otherwise
|
|
#endif
|
|
|
|
/*
|
|
* read a UINT from the profile, or return default if
|
|
* not found.
|
|
*/
|
|
UINT mmGetProfileIntA(LPCSTR appname, LPCSTR valuename, INT uDefault);
|
|
|
|
/*
|
|
* read a string from the profile into pResult.
|
|
* result is number of characters written into pResult
|
|
*/
|
|
DWORD mmGetProfileString(LPCTSTR appname, LPCTSTR valuename, LPCTSTR pDefault,
|
|
LPTSTR pResult, int cbResult
|
|
);
|
|
|
|
/*
|
|
* write a string to the profile
|
|
*/
|
|
VOID mmWriteProfileString(LPCTSTR appname, LPCTSTR valuename, LPCTSTR pData);
|
|
|
|
|
|
#if MMPROFILECACHE
|
|
VOID CloseKeys(VOID);
|
|
#else
|
|
#define CloseKeys()
|
|
#endif
|
|
|
|
/*
|
|
* convert an Ansi string to Wide characters
|
|
*/
|
|
LPWSTR mmAnsiToWide (
|
|
LPWSTR lpwsz, // out: wide char buffer to convert into
|
|
LPCSTR lpsz, // in: ansi string to convert from
|
|
UINT nChars); // in: count of characters in each buffer
|
|
|
|
/*
|
|
* convert a Wide char string to Ansi
|
|
*/
|
|
LPSTR mmWideToAnsi (
|
|
LPSTR lpsz, // out: ansi buffer to convert into
|
|
LPCWSTR lpwsz, // in: wide char buffer to convert from
|
|
UINT nChars); // in: count of characters (not bytes!)
|
|
|
|
#if !defined NUMELMS
|
|
#define NUMELMS(aa) (sizeof(aa)/sizeof((aa)[0]))
|
|
#endif
|
|
|
|
#endif
|