#pragma once #if USING_GAMEGUARD #include class GameGuard : public util::Singleton { public: GameGuard() {} ~GameGuard() {} UINT32 init(); void release(); private: HMODULE csauth_lib; }; #endif //USING_GAMEGUARD