Open-Source-Software-Entwicklung und Downloads

Browse Subversion Repository

Contents of /trunk/ttpmenu/registry.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3227 - (show annotations) (download) (as text)
Tue Mar 24 15:10:33 2009 UTC (15 years, 1 month ago) by maya
File MIME type: text/x-chdr
File size: 1287 byte(s)
CVS から SVN へ移行: 改行コードを LF から CR+LF へ変換
1 #ifndef REGISTRY_H
2 #define REGISTRY_H
3 /* @(#)Copyright (C) NTT-IT 1998 -- registry.h -- Ver1.00b1 */
4 /* ========================================================================
5 Project Name : Universal Library
6 Outline : Registory function Header
7 Create : 1998-02-17(Tue)
8 Update :
9 Copyright : S.Hayakawa NTT-IT
10 Reference :
11 ======================================================================== */
12 #include <windows.h>
13
14 HKEY RegCreate(HKEY hCurrentKey, LPCTSTR lpszKeyName);
15 HKEY RegOpen(HKEY hCurrentKey, LPCTSTR lpszKeyName);
16 BOOL RegClose(HKEY hKey);
17 BOOL RegSetStr(HKEY hKey, LPCTSTR lpszValueName, TCHAR *buf);
18 BOOL RegGetStr(HKEY hKey, LPCTSTR lpszValueName, TCHAR *buf, DWORD dwSize);
19 BOOL RegSetDword(HKEY hKey, LPCTSTR lpszValueName, DWORD dwvalue);
20 BOOL RegGetDword(HKEY hKey, LPCTSTR lpszValueName, DWORD *dwValue);
21 BOOL RegSetBinary(HKEY hKey, LPCTSTR lpszValueName, void *buf, DWORD dwSize);
22 BOOL RegGetBinary(HKEY hKey, LPCTSTR lpszValueName, void *buf, LPDWORD lpdwSize);
23
24 LONG RegEnumEx(HKEY hKey, DWORD dwIndex, LPTSTR lpName, LPDWORD lpcName, LPDWORD lpReserved, LPTSTR lpClass, LPDWORD lpcClass, PFILETIME lpftLastWriteTime);
25 LONG RegDelete(HKEY hKey, LPCTSTR lpSubKey);
26
27 void checkIniFile();
28
29 #endif

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26