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