WindowsXP-SP1/windows/netdde/incs/proflspt.h
2020-09-30 16:53:49 +02:00

18 lines
942 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 );