00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #define INCL_WIN
00013 #define INCL_PM
00014 #define INCL_WINSWITCHLIST
00015 #include <os2wrap.h>
00016
00017 #include <win32type.h>
00018 #include <winconst.h>
00019 #include "oslibprf.h"
00020
00021 LONG OSLibPrfQueryProfileInt(OSLIB_HINI hini, char *pszApp, char *pszKey, LONG sDefault)
00022 {
00023 return PrfQueryProfileInt(hini, pszApp, pszKey, sDefault);
00024 }
00025
00026 LONG OSLibPrfQueryProfileString(OSLIB_HINI hini, char *pszApp, char *pszKey, char *pszDefault, char *buffer, ULONG buflen)
00027 {
00028 return PrfQueryProfileString(hini, pszApp, pszKey, pszDefault, buffer, buflen);
00029 }