File: header.hpp

package info (click to toggle)
higan 098-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 11,904 kB
  • ctags: 13,286
  • sloc: cpp: 108,285; ansic: 778; makefile: 32; sh: 18
file content (82 lines) | stat: -rw-r--r-- 1,749 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#define UNICODE
#define WINVER 0x0601
#define _WIN32_WINNT WINVER
#define _WIN32_IE WINVER
#define __MSVCRT_VERSION__ WINVER
#define NOMINMAX

#include <nall/windows/guard.hpp>
#include <winsock2.h>
#include <windows.h>
#include <windowsx.h>
#include <commctrl.h>
#include <uxtheme.h>
#include <io.h>
#include <shlobj.h>
#include <nall/windows/guard.hpp>
#include <nall/windows/registry.hpp>
#include <nall/windows/utf8.hpp>

//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_PUSHBUTTON)
  #define BP_PUSHBUTTON 1
#endif

#if !defined(PBS_NORMAL)
  #define PBS_NORMAL 1
#endif

#if !defined(PBS_HOT)
  #define PBS_HOT 2
#endif

#if !defined(PBS_PRESSED)
  #define PBS_PRESSED 3
#endif

#if !defined(PBS_DISABLED)
  #define PBS_DISABLED 4
#endif

#if !defined(PBS_DEFAULTED)
  #define PBS_DEFAULTED 5
#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