big-endian compatibility
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4608 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
c6ff33d9c5
commit
5d0149966e
2 changed files with 88 additions and 72 deletions
|
@ -32,7 +32,11 @@
|
|||
#include <vector>
|
||||
#include <stdexcept>
|
||||
|
||||
#define EXTENDED_DIALOG ((DWORD) 0xFFFF0001)
|
||||
#ifndef __BIG_ENDIAN__
|
||||
# define EXTENDED_DIALOG ((DWORD) 0xFFFF0001)
|
||||
#else
|
||||
# define EXTENDED_DIALOG ((DWORD) 0x0100FFFF)
|
||||
#endif
|
||||
|
||||
struct DialogItemTemplate {
|
||||
DWORD dwHelpId; // Extended only
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue