source: trunk/gsinstaller/registry.h@ 2013

Last change on this file since 2013 was 1475, checked in by cs025, 24 years ago

Updated sources with most of uninstall added

  • Property svn:keywords set to Author Date Id Revision
File size: 731 bytes
Line 
1#ifndef _REGISTRY_H_
2#define _REGISTRY_H_
3#include <windows.h>
4
5bool registry_openkey(HKEY key, const char *name, PHKEY keyout);
6bool registry_storeblock(char *name, char *data, int size);
7bool registry_fetchblock(char *name, char *data, int size);
8bool registry_getstring(HKEY key, char *name, char **string);
9bool registry_setstring(HKEY key, const char *name, const char *string);
10bool registry_deleteitem(HKEY key, const char *name);
11bool registry_createkey(HKEY key, const char *name, PHKEY keyout);
12bool registry_deletekey(HKEY key, const char *name);
13bool registry_closekey(HKEY key);
14bool registry_keyExists(HKEY key, const char *name);
15bool registry_ensureKeyExists(HKEY key, const char *name);
16#endif
17
18
Note: See TracBrowser for help on using the repository browser.