2000-08-14 10:59:32 +00:00
|
|
|
/********************************************************
|
|
|
|
|
|
|
|
Declaration of registry access functions
|
|
|
|
Copyright 2000 Eugene Smith (divx@euro.ru)
|
|
|
|
Last modified: 18.06.2000
|
|
|
|
|
|
|
|
*********************************************************/
|
|
|
|
|
|
|
|
|
2000-07-15 12:06:18 +00:00
|
|
|
#ifndef REGISTRY_H
|
|
|
|
#define REGISTRY_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2000-08-14 10:59:32 +00:00
|
|
|
long RegOpenKeyExA(long key, const char* subkey, long reserved, long access, int* newkey);
|
2000-07-15 12:06:18 +00:00
|
|
|
long RegCloseKey(long key);
|
2000-08-14 10:59:32 +00:00
|
|
|
long RegQueryValueExA(long key, const char* value, int* reserved, int* type, int* data, int* count);
|
2001-02-24 17:49:57 +00:00
|
|
|
long RegCreateKeyExA(long key, const char* name, long reserved,
|
|
|
|
void* classs, long options, long security,
|
2000-07-15 12:06:18 +00:00
|
|
|
void* sec_attr, int* newkey, int* status) ;
|
2000-08-14 10:59:32 +00:00
|
|
|
long RegSetValueExA(long key, const char* name, long v1, long v2, void* data, long size);
|
2000-07-15 12:06:18 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|
2001-02-24 17:49:57 +00:00
|
|
|
#endif
|