1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef WINUTILS_H #define WINUTILS_H #include <windows.h> namespace winutils { HINSTANCE GetInstanceHandle(); // ×¢²áwindows´°¿ÚÀà ATOM RegisterWindowClass(const wchar_t* className, WNDPROC windowProc, unsigned int style); void UnregisterWindowClass(const wchar_t* className); } #endif