kernel32: Fix the HGLOBAL header size for 64-bit.

oldstable
Alexandre Julliard 2009-06-17 20:53:46 +02:00
parent 034c6c3e58
commit c6dffb6df8
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ BOOL WINAPI HeapSetInformation( HANDLE heap, HEAP_INFORMATION_CLASS infoclass, P
* size = 8*k, where k=1,2,3,... alloc's exactly the given size.
* The Minolta DiMAGE Image Viewer heavily relies on this, corrupting
* the output jpeg's > 1 MB if not */
#define HGLOBAL_STORAGE 8 /* sizeof(HGLOBAL)*2 */
#define HGLOBAL_STORAGE (sizeof(HGLOBAL)*2)
#include "pshpack1.h"