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.

17 lines
942 B

  1. BOOL FAR PASCAL MyWritePrivateProfileInt( LPSTR lpAppName, LPSTR lpKeyName,
  2. int nValue, LPSTR lpFileName );
  3. BOOL FAR PASCAL WritePrivateProfileLong( LPSTR lpAppName, LPSTR lpKeyName,
  4. LONG lValue, LPSTR lpFileName );
  5. LONG FAR PASCAL GetPrivateProfileLong( LPSTR lpAppName, LPSTR lpKeyName,
  6. LONG lDefault, LPSTR lpFileName );
  7. BOOL FAR PASCAL TestPrivateProfile( LPCSTR lpAppName, LPCSTR lpKeyName,
  8. LPCSTR lpFileName );
  9. BOOL FAR WINAPI MyWritePrivateProfileString(LPCSTR lpszSection, LPCSTR lpszKey,
  10. LPCSTR lpszString, LPCSTR lpszFile );
  11. UINT FAR WINAPI MyGetPrivateProfileInt(LPCSTR lpszSection, LPCSTR lpszKey,
  12. INT dwDefault, LPCSTR lpszFile );
  13. DWORD FAR WINAPI MyGetPrivateProfileString(LPCSTR lpszSection, LPCSTR lpszKey,
  14. LPCSTR lpszDefault, LPSTR lpszReturnBuffer,
  15. DWORD cbReturnBuffer, LPCSTR lpszFile );
  16.