/* Coded by Robel Sharma Date: 20-08-2013 If you use in any product please make sure to write my credits */ // Server.h : main header file for the PROJECT_NAME application // #pragma once #ifndef __AFXWIN_H__ #error "include 'stdafx.h' before including this file for PCH" #endif #include "resource.h" // main symbols #include #include using namespace std; // CServerApp: // See Server.cpp for the implementation of this class // class CServerApp : public CWinApp { public: CServerApp(); // Overrides public: virtual BOOL InitInstance(); static void OnServerAction(std::string sValue); // Implementation DECLARE_MESSAGE_MAP() }; extern CServerApp theApp;