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.
 
 
 
 
 
 

18 lines
942 B

BOOL FAR PASCAL MyWritePrivateProfileInt( LPSTR lpAppName, LPSTR lpKeyName,
int nValue, LPSTR lpFileName );
BOOL FAR PASCAL WritePrivateProfileLong( LPSTR lpAppName, LPSTR lpKeyName,
LONG lValue, LPSTR lpFileName );
LONG FAR PASCAL GetPrivateProfileLong( LPSTR lpAppName, LPSTR lpKeyName,
LONG lDefault, LPSTR lpFileName );
BOOL FAR PASCAL TestPrivateProfile( LPCSTR lpAppName, LPCSTR lpKeyName,
LPCSTR lpFileName );
BOOL FAR WINAPI MyWritePrivateProfileString(LPCSTR lpszSection, LPCSTR lpszKey,
LPCSTR lpszString, LPCSTR lpszFile );
UINT FAR WINAPI MyGetPrivateProfileInt(LPCSTR lpszSection, LPCSTR lpszKey,
INT dwDefault, LPCSTR lpszFile );
DWORD FAR WINAPI MyGetPrivateProfileString(LPCSTR lpszSection, LPCSTR lpszKey,
LPCSTR lpszDefault, LPSTR lpszReturnBuffer,
DWORD cbReturnBuffer, LPCSTR lpszFile );