Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*
* AVICAP32: * * utility functions to read and write values to the profile, * using win.ini for Win16/Win95 or current * the registry for Win32 NT. (Trivial to change to registry for Win95) * * The only routine that AVICAP32 uses is GetProfileIntA */
#if defined(_WIN32) && defined(UNICODE)
/*
* read a UINT from the profile, or return default if * not found. */ UINT mmGetProfileIntA(LPCSTR appname, LPCSTR valuename, INT uDefault);
// Now map all instances of GetProfileIntA to mmGetProfileIntA
#define GetProfileIntA mmGetProfileIntA
#endif
|