Click here to Skip to main content
15,884,298 members
Articles / Web Development / HTML

Server Wizard

Rate me:
Please Sign up or sign in to vote.
4.83/5 (6 votes)
1 Feb 2013CPOL7 min read 31.1K   1.9K   33  
A Visual C++ Project Wizard for the fast creation of high performance TCP servers in C++
#pragma once
namespace PushFramework
{
class SystemService;

class SystemServiceImpl
{
public:
    SystemServiceImpl(const wchar_t* serviceName, SystemService* pFacade);
    ~SystemServiceImpl(void);

    void Run();
    void IndicateRunning();
    bool Install(std::wstring displayName);
    bool UnInstall();

private:
    std::wstring serviceName;
    SystemService* pFacade;
    SERVICE_STATUS_HANDLE   gSvcStatusHandle;

    static VOID WINAPI _SvcMain(DWORD, LPTSTR*);
    void SvcMain(DWORD, LPTSTR*);
    VOID ReportSvcStatus( DWORD dwCurrentState,	DWORD dwWin32ExitCode,	DWORD dwWaitHint);



    static VOID WINAPI _SvcCtrlHandler( DWORD dwCtrl );
    VOID WINAPI SvcCtrlHandler( DWORD dwCtrl );
};
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Tunisia Tunisia
Services:
http://www.pushframework.com/?page_id=890

Comments and Discussions