Set AVFMT_FLAG_GENPTS if -correct-pts is used.
[mplayer.git] / loader / loader.h
blob44c1c2e652e37124c8c344eeb85c5cd47db9ac36
1 /********************************************************
3 Win32 binary loader interface
4 Copyright 2000 Eugene Kuznetsov (divx@euro.ru)
5 Shamelessly stolen from Wine project
7 *********************************************************/
9 /*
10 * Modified for use with MPlayer, detailed changelog at
11 * http://svn.mplayerhq.hu/mplayer/trunk/
12 * $Id$
15 #ifndef _LOADER_H
16 #define _LOADER_H
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
22 #include "wine/windef.h"
23 #include "wine/driver.h"
24 #include "wine/mmreg.h"
25 #include "wine/vfw.h"
26 #include "wine/msacm.h"
28 unsigned int _GetPrivateProfileIntA(const char* appname, const char* keyname, int default_value, const char* filename);
29 int _GetPrivateProfileStringA(const char* appname, const char* keyname,
30 const char* def_val, char* dest, unsigned int len, const char* filename);
31 int _WritePrivateProfileStringA(const char* appname, const char* keyname,
32 const char* string, const char* filename);
34 INT WINAPI LoadStringA( HINSTANCE instance, UINT resource_id,
35 LPSTR buffer, INT buflen );
37 #ifdef __cplusplus
39 #endif
40 #endif /* __LOADER_H */