summaryrefslogtreecommitdiffstats
path: root/loader/registry.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-04 02:21:47 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-04 02:21:47 +0000
commit4f3776f018ba2b7d07180da5500ba7dd55567637 (patch)
tree0272ecded470c78c9b8d00a4d4128a79abf55d16 /loader/registry.h
parentd60f718c2e4ebc7be2c8eb7fa933eff83bb8570b (diff)
downloadmpv-4f3776f018ba2b7d07180da5500ba7dd55567637.tar.bz2
mpv-4f3776f018ba2b7d07180da5500ba7dd55567637.tar.xz
sync with avifile
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2070 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/registry.h')
-rw-r--r--loader/registry.h37
1 files changed, 23 insertions, 14 deletions
diff --git a/loader/registry.h b/loader/registry.h
index 2e794799e7..9c94043c42 100644
--- a/loader/registry.h
+++ b/loader/registry.h
@@ -1,24 +1,33 @@
-/********************************************************
-
- Declaration of registry access functions
- Copyright 2000 Eugene Smith (divx@euro.ru)
-
-*********************************************************/
+#ifndef AVIFILE_REGISTRY_H
+#define AVIFILE_REGISTRY_H
+/********************************************************
+ *
+ * Declaration of registry access functions
+ * Copyright 2000 Eugene Kuznetsov (divx@euro.ru)
+ *
+ ********************************************************/
-#ifndef REGISTRY_H
-#define REGISTRY_H
#ifdef __cplusplus
extern "C" {
#endif
-long RegOpenKeyExA(long key, const char* subkey, long reserved, long access, int* newkey);
+
+long RegOpenKeyExA(long key, const char* subkey, long reserved,
+ long access, int* newkey);
long RegCloseKey(long key);
-long RegQueryValueExA(long key, const char* value, int* reserved, int* type, int* data, int* count);
+long RegQueryValueExA(long key, const char* value, int* reserved,
+ int* type, int* data, int* count);
long RegCreateKeyExA(long key, const char* name, long reserved,
- void* classs, long options, long security,
- void* sec_attr, int* newkey, int* status);
-long RegSetValueExA(long key, const char* name, long v1, long v2, const void* data, long size);
+ void* classs, long options, long security,
+ void* sec_attr, int* newkey, int* status);
+long RegSetValueExA(long key, const char* name, long v1, long v2,
+ const void* data, long size);
+#ifdef __WINE_WINERROR_H
+long RegEnumValueA(HKEY hkey, DWORD index, LPSTR value, LPDWORD val_count,
+ LPDWORD reserved, LPDWORD type, LPBYTE data, LPDWORD count);
+#endif
#ifdef __cplusplus
};
#endif
-#endif
+
+#endif // AVIFILE_REGISTRY_H