Mercurial > mplayer.hg
annotate loader/registry.h @ 30259:2c671b7d2bd4
Add const qualifier to rgb48 to YV12 functions' src.
author | ramiro |
---|---|
date | Thu, 14 Jan 2010 06:19:45 +0000 |
parents | 837cd9762b4e |
children | 26f673ba0675 |
rev | line source |
---|---|
26045 | 1 #ifndef MPLAYER_REGISTRY_H |
2 #define MPLAYER_REGISTRY_H | |
1 | 3 |
2069 | 4 /******************************************************** |
5 * | |
6 * Declaration of registry access functions | |
7 * Copyright 2000 Eugene Kuznetsov (divx@euro.ru) | |
8 * | |
9 ********************************************************/ | |
1 | 10 |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
9965
diff
changeset
|
11 /* |
18783 | 12 * Modified for use with MPlayer, detailed changelog at |
13 * http://svn.mplayerhq.hu/mplayer/trunk/ | |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
9965
diff
changeset
|
14 */ |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
9965
diff
changeset
|
15 |
1 | 16 #ifdef __cplusplus |
17 extern "C" { | |
18 #endif | |
2069 | 19 |
30171
837cd9762b4e
Add required header #includes to satisfy 'make checkheaders'.
diego
parents:
26045
diff
changeset
|
20 #include "wine/winbase.h" |
837cd9762b4e
Add required header #includes to satisfy 'make checkheaders'.
diego
parents:
26045
diff
changeset
|
21 |
3134 | 22 void free_registry(void); |
23 | |
9965 | 24 long __stdcall RegOpenKeyExA(long key, const char* subkey, long reserved, |
2069 | 25 long access, int* newkey); |
9965 | 26 long __stdcall RegCloseKey(long key); |
27 long __stdcall RegQueryValueExA(long key, const char* value, int* reserved, | |
2069 | 28 int* type, int* data, int* count); |
9965 | 29 long __stdcall RegCreateKeyExA(long key, const char* name, long reserved, |
2069 | 30 void* classs, long options, long security, |
31 void* sec_attr, int* newkey, int* status); | |
9965 | 32 long __stdcall RegSetValueExA(long key, const char* name, long v1, long v2, |
2069 | 33 const void* data, long size); |
3465 | 34 |
26045 | 35 #ifdef MPLAYER_WINERROR_H |
3465 | 36 |
9965 | 37 long __stdcall RegEnumKeyExA(HKEY hKey, DWORD dwIndex, LPSTR lpName, LPDWORD lpcbName, |
3465 | 38 LPDWORD lpReserved, LPSTR lpClass, LPDWORD lpcbClass, |
39 LPFILETIME lpftLastWriteTime); | |
9965 | 40 long __stdcall RegEnumValueA(HKEY hkey, DWORD index, LPSTR value, LPDWORD val_count, |
2069 | 41 LPDWORD reserved, LPDWORD type, LPBYTE data, LPDWORD count); |
42 #endif | |
1 | 43 #ifdef __cplusplus |
44 }; | |
45 #endif | |
2069 | 46 |
26045 | 47 #endif /* MPLAYER_REGISTRY_H */ |