Sha256: 3285841c7b093ae94a8b1851fe8887ad4aa888992ba38d011a713e1bdd9ffa7a
Contents?: true
Size: 316 Bytes
Versions: 18
Compression:
Stored size: 316 Bytes
Contents
#pragma once #include <ws2tcpip.h> #include <winsock2.h> class LogServer { SOCKET m_listenSocket; TCHAR* m_logFilePath; HANDLE m_hLogFile; public: LogServer(TCHAR* logFilePath); ~LogServer(void); // bool init(); // void run(); private: bool createFile(); bool writeToFile(const char*, const int ); };
Version data entries
18 entries across 18 versions & 1 rubygems