summaryrefslogtreecommitdiff
path: root/Editor/GUI/WinUtils.h
blob: 9257d77c71f9991a7b62e4ccb4bda03ca6f3002c (plain)
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