13 lines
215 B
C++
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 );
|
|
};
|