RegHandler.h
上传用户:cydong117
上传日期:2009-11-10
资源大小:638k
文件大小:1k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. // ****************************************************************************
  2. //
  3. // Registry Handler 
  4. //
  5. //      All written by Jeong, Euy-heon
  6. //      Copyright(C) 1997, 1998 Euy-heon, Jeong. All right reserved.
  7. //
  8. // ****************************************************************************
  9. #include "stdafx.h"
  10. BOOL jRegSetKey(LPCTSTR pSubKeyName, LPCTSTR pValueName, DWORD dwFlags, 
  11. LPBYTE pValue, DWORD nValueSize);
  12. BOOL jRegGetKey(LPCTSTR pSubKeyName, LPCTSTR pValueName, LPBYTE pValue);
  13. LONG jRegEnumKey(LPCTSTR pSubKeyName, int nIndex, LPTSTR lpSubKey, int nSubkeyLen);
  14. /*
  15. #define _LOGINGATE_SERVER_REGISTRY _T("Software\LegendOfMir\LoginGate")
  16. jRegGetKey(_LOGINGATE_SERVER_REGISTRY, _T("RemoteIP"), (LPBYTE)&dwIP);
  17. jRegSetKey(_LOGINGATE_SERVER_REGISTRY, _T("RemoteIP"), REG_DWORD, (LPBYTE)&dwIP, sizeof(DWORD));
  18. */