source: trunk/gsinstaller/registry.h@ 11703

Last change on this file since 11703 was 11664, checked in by mdewsnip, 18 years ago

Fixed the line endings... for real this time, I hope.

  • Property svn:keywords set to Author Date Id Revision
File size: 713 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.