From 4f3776f018ba2b7d07180da5500ba7dd55567637 Mon Sep 17 00:00:00 2001 From: arpi Date: Thu, 4 Oct 2001 02:21:47 +0000 Subject: sync with avifile git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2070 b3059339-0415-0410-9bf9-f77b7e298cf2 --- loader/registry.h | 37 +++++++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 14 deletions(-) (limited to 'loader/registry.h') 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 -- cgit v1.2.3