00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef _LOADER_H
00016 #define _LOADER_H
00017
00018 #ifdef __cplusplus
00019 extern "C" {
00020 #endif
00021
00022 #include "wine/windef.h"
00023 #include "wine/driver.h"
00024 #include "wine/mmreg.h"
00025 #include "wine/vfw.h"
00026 #include "wine/msacm.h"
00027
00028 unsigned int _GetPrivateProfileIntA(const char* appname, const char* keyname, int default_value, const char* filename);
00029 int _GetPrivateProfileStringA(const char* appname, const char* keyname,
00030 const char* def_val, char* dest, unsigned int len, const char* filename);
00031 int _WritePrivateProfileStringA(const char* appname, const char* keyname,
00032 const char* string, const char* filename);
00033
00034 INT WINAPI LoadStringA( HINSTANCE instance, UINT resource_id,
00035 LPSTR buffer, INT buflen );
00036
00037 #ifdef __cplusplus
00038 }
00039 #endif
00040 #endif
00041