Main Page | Modules | Class Hierarchy | Class List | Directories | File List | Class Members | File Members | Related Pages

loader.h

00001 /********************************************************
00002 
00003         Win32 binary loader interface
00004         Copyright 2000 Eugene Kuznetsov ([email protected])
00005         Shamelessly stolen from Wine project
00006 
00007 *********************************************************/
00008 
00009 /*
00010  * Modified for use with MPlayer, detailed CVS changelog at
00011  * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
00012  * $Id: loader.h 11593 2005-06-28 18:02:01Z courmisch $
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 /* __LOADER_H */
00041 

Generated on Tue Dec 20 10:14:20 2005 for vlc-0.8.4a by  doxygen 1.4.2