Files
2022-10-26 12:25:11 +08:00

13 lines
215 B
C++

#pragma once
class ChangeIP
{
public:
ChangeIP(void);
~ChangeIP(void);
public:
static BOOL GetIPValue( const TCHAR* pszIP, DWORD& dwKey );
static BOOL GetStrIP( DWORD dwIPKey, TCHAR* pszIP, int nBufSize );
};