#ifndef _RASAPI_REMOTEACCESSSERVER_HPP_ #define _RASAPI_REMOTEACCESSSERVER_HPP_ #ifndef _COMMON_WINDOWS_HPP_ #include #endif #ifndef _COMMON_BLOCK_HPP_ #include #endif #ifndef _RASAPI_RASAPI_HPP_ #include #endif #ifndef _RASAPI_RASENTRYNAME_HPP_ #include #endif #ifndef _RASAPI_RASCONNSTATUS_HPP_ #include #endif class RemoteAccessServer : public RasApi { public: RemoteAccessServer(void); virtual ~RemoteAccessServer(); WORD rasEnumEntries(Block &rasEntryNames); DWORD rasGetConnectStatus(HRASCONN hRasConn,RasConnectionStatus &rasConnectionStatus); private: }; inline RemoteAccessServer::RemoteAccessServer(void) { } inline RemoteAccessServer::~RemoteAccessServer() { } #endif