Mercurial > hg > xemacs-beta
diff src/syswindows.h @ 5936:574f0cded429 cygwin
try to replace all nnnL or nnnUL constants with EMACS_[U]INT
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Sun, 13 Dec 2015 13:22:58 +0000 |
parents | a0d9bfe304de |
children |
line wrap: on
line diff
--- a/src/syswindows.h Sat Dec 12 21:49:31 2015 +0000 +++ b/src/syswindows.h Sun Dec 13 13:22:58 2015 +0000 @@ -961,7 +961,7 @@ #define qxeCreateWindow(lpClassName, lpWindowName, dwStyle, x, y, \ nWidth, nHeight, hWndParent, hMenu, hInstance, \ lpParam) \ - qxeCreateWindowEx (0L, lpClassName, lpWindowName, dwStyle, x, y, \ + qxeCreateWindowEx (E0, lpClassName, lpWindowName, dwStyle, x, y, \ nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam) /* ------------------------- Unicode conversion ------------------------- */ @@ -1359,7 +1359,7 @@ /* To prevent zero-initialized variables from being placed into the bss section, use non-zero values to represent an uninitialized state. */ #define UNINIT_PTR ((unsigned char*) 0xF0A0F0A0) -#define UNINIT_LONG (0xF0A0F0A0L) +#define UNINIT_LONG ((EMACS_INT)0xF0A0F0A0) /* Recreate the heap created during dumping. */ void recreate_heap (Extbyte *executable_path);