those are not available on mingw for whatever reason...

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6426 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2014-01-21 06:59:51 +00:00
parent 8e1d36963e
commit 859b5d3d07
2 changed files with 4 additions and 4 deletions

View file

@ -33,9 +33,9 @@ extern NTOOLTIP g_tip;
typedef struct {
BYTE Style, State;
UINT8 ImgIdx;
UINT8 TTip;
UINT16 CmdId;
BYTE ImgIdx;
BYTE TTip;
WORD CmdId;
} TBBTNDESC;
#define MKNAMEDTBBTNDESC(id, sta, sty) sty, sta, IDB_##id, IDS_##id, IDM_##id

View file

@ -27,7 +27,7 @@
#include "toolbar.h"
#include <shlwapi.h>
typedef UINT8 PACKEDCMDID_T;
typedef BYTE PACKEDCMDID_T;
#define PACKCMDID(id) ( PACKEDCMDID_T((id) - IDM_CMDBASE) )
#define UNPACKCMDID(id) ( IDM_CMDBASE + (id) )