regini.h
资源名称:shell.rar [点击查看]
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:1k
源码类别:
系统编程
开发平台:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- // REGINI.H
- //
- // Registry helper functions declaration
- //
- // History:
- //
- // Author Date Description
- // ------ ---- -----------
- // jaym 09/18/96 Adapted from ccteng's source
- // jaym 04/29/97 Cleanup and simplification
- /////////////////////////////////////////////////////////////////////////////
- #ifndef __REGINI_H__
- #define __REGINI_H__
- DWORD ReadRegValue(HKEY hKeyRoot, LPCTSTR lpszSubKey, LPCTSTR lpszValue, BYTE * pbReturn, DWORD * lpdwReturnSize);
- DWORD ReadRegString(HKEY hKeyRoot, LPCTSTR lpszSection, LPCTSTR lpszKey, LPTSTR lpszDefault, LPTSTR lpszReturn, DWORD cchReturnSize);
- DWORD ReadRegDWORD(HKEY hKeyRoot, LPCTSTR lpszSection, LPCTSTR lpszKey, DWORD dwDefault);
- BOOL WriteRegValue(HKEY hKeyRoot, LPCTSTR lpszSubKey, LPCTSTR lpszValue, DWORD dwValueType, BYTE * lpValue, DWORD dwSize);
- #endif //__REGINI_H
English
