]> Shamusworld >> Repos - ttedit/blob - src/registry.h
526713b5cdd3f79b37954c545832c8b21ef85143
[ttedit] / src / registry.h
1 //
2 // REGISTRY.H - Win32 support file header
3 // by James L. Hammons
4 // (C) 2002 Underground Software
5 //
6 //   JLH = James Hammons <jlhamm@acm.org>
7 //
8
9 #ifndef __REGISTRY_H__
10 #define __REGISTRY_H__
11
12 #include "types.h"
13
14 // Function prototypes
15
16 void InitINIFile(char * path = NULL);
17 void SetINIInt(char *, char *, int32);
18 void SetINIString(char *, char *, char *);
19 int32 GetINIInt(char *, char *, int32);
20 const char * GetINIString(char *, char *, char *);
21
22 #endif // __REGISTRY_H__