diff Registry.h @ 2342:d7f4dac06dc0

Adding Registry.h/.cpp to project
author Grumpy7
date Sun, 06 Apr 2014 12:57:04 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Registry.h	Sun Apr 06 12:57:04 2014 +0200
@@ -0,0 +1,8 @@
+#pragma once
+
+
+
+int __fastcall ReadWindowsRegistryInt(const char *pKey, int uDefValue); // idb
+void __fastcall WriteWindowsRegistryString(const char *pKey, const char *pString);
+void __fastcall ReadWindowsRegistryString(const char *pKeyName, char *pOutString, int uBufLen, const char *pDefaultValue);
+void __fastcall WriteWindowsRegistryInt(const char *pKey, int val);
\ No newline at end of file