summaryrefslogblamecommitdiffstats
path: root/WebServer/Events.h
blob: c8a6a7df9290557460afc7794230558d382813de (plain) (tree)
1
2
3
4
5
6
7

             
              

        

                                                 




                                               



                                            
       
   
#pragma once

class cEvents
{
public:
	cEvents( unsigned int a_NumEvents = 1 );
	~cEvents();

	void Wait();
	void Set(unsigned int a_EventNum = 0);
private:
	unsigned int m_NumEvents;
	void* m_Handle; // HANDLE[] pointer

#ifndef _WIN32
    bool m_bNamed;
#endif
};