2013-03-15 13:11:33 +00:00
|
|
|
#define UNICODE
|
Update to v094r13 release.
byuu says:
This version polishes up the input dialogue (reset, erase, disable
button when item not focused, split device ID from mapping name), adds
color emulation toggle, and add dummy menu items for remaining features
(to be filled in later.)
Also, it now compiles cleanly on Windows with GTK.
I didn't test with TDM-GCC-32, because for god knows what reason, the
32-bit version ships with headers from Windows 95 OSR2 only. So I built
with TDM-GCC-64 with arch=x86.
And uh, apparently, moving or resizing a window causes a Visual C++
runtime exception in the GTK+ DLLs. This doesn't happen with trance or
renshuu built with TDM-GCC-32. So, yeah, like I said, don't use -m32.
2015-03-07 10:21:47 +00:00
|
|
|
#define WINVER 0x0601
|
|
|
|
#define _WIN32_WINNT WINVER
|
|
|
|
#define _WIN32_IE WINVER
|
|
|
|
#define __MSVCRT_VERSION__ WINVER
|
2013-03-15 13:11:33 +00:00
|
|
|
#define NOMINMAX
|
|
|
|
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <windowsx.h>
|
|
|
|
#include <commctrl.h>
|
2013-11-28 10:29:01 +00:00
|
|
|
#include <uxtheme.h>
|
2013-03-15 13:11:33 +00:00
|
|
|
#include <io.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <nall/windows/registry.hpp>
|
|
|
|
#include <nall/windows/utf8.hpp>
|
2013-11-28 10:32:53 +00:00
|
|
|
|
2015-06-12 13:14:38 +00:00
|
|
|
//MinGW/32-bit has painfully outdated platform headers ...
|
|
|
|
|
|
|
|
#if !defined(Button_SetImageList)
|
|
|
|
typedef struct {
|
|
|
|
HIMAGELIST himl;
|
|
|
|
RECT margin;
|
|
|
|
UINT uAlign;
|
|
|
|
} BUTTON_IMAGELIST, *PBUTTON_IMAGELIST;
|
|
|
|
|
|
|
|
#define BUTTON_IMAGELIST_ALIGN_LEFT 0
|
|
|
|
#define BUTTON_IMAGELIST_ALIGN_RIGHT 1
|
|
|
|
#define BUTTON_IMAGELIST_ALIGN_TOP 2
|
|
|
|
#define BUTTON_IMAGELIST_ALIGN_BOTTOM 3
|
|
|
|
#define BUTTON_IMAGELIST_ALIGN_CENTER 4
|
|
|
|
|
|
|
|
#define BCM_FIRST 0x1600
|
|
|
|
#define BCM_SETIMAGELIST (BCM_FIRST+2)
|
|
|
|
#define Button_SetImageList(hwnd, pbuttonImagelist) (WINBOOL)SNDMSG((hwnd),BCM_SETIMAGELIST,0,(LPARAM)(pbuttonImagelist))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(BP_CHECKBOX)
|
|
|
|
#define BP_CHECKBOX 3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(CBS_UNCHECKEDNORMAL)
|
|
|
|
#define CBS_UNCHECKEDNORMAL 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(CBS_CHECKEDNORMAL)
|
|
|
|
#define CBS_CHECKEDNORMAL 5
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(LVCFMT_FIXED_WIDTH)
|
|
|
|
#define LVCFMT_FIXED_WIDTH 0x0100
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(TBS_TRANSPARENTBKGND)
|
|
|
|
#define TBS_TRANSPARENTBKGND 0x1000
|
|
|
|
#endif
|