Changeset 3196 for trunk/include


Ignore:
Timestamp:
Mar 22, 2000, 7:47:01 PM (25 years ago)
Author:
sandervl
Message:

header updates

Location:
trunk/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win32api.h

    r3188 r3196  
    1 /* $Id: win32api.h,v 1.5 2000-03-21 20:13:30 sandervl Exp $ */
     1/* $Id: win32api.h,v 1.6 2000-03-22 18:47:01 sandervl Exp $ */
    22
    33/*
     
    6262                              DWORD offset_low, DWORD count);
    6363
     64HANDLE WIN32API GetCurrentProcess(void);
     65DWORD  WIN32API GetCurrentProcessId(void);
     66HANDLE WIN32API GetCurrentThread(void);
     67DWORD  WIN32API GetCurrentThreadId(void);
     68HANDLE WIN32API GetProcessHeap(void);
     69
     70LPVOID WIN32API HeapAlloc(HANDLE,DWORD,DWORD);
     71DWORD  WIN32API HeapCompact(HANDLE,DWORD);
     72HANDLE WIN32API HeapCreate(DWORD,DWORD,DWORD);
     73BOOL   WIN32API HeapDestroy(HANDLE);
     74BOOL   WIN32API HeapFree(HANDLE,DWORD,LPVOID);
     75BOOL   WIN32API HeapLock(HANDLE);
     76LPVOID WIN32API HeapReAlloc(HANDLE,DWORD,LPVOID,DWORD);
     77DWORD  WIN32API HeapSize(HANDLE,DWORD,LPVOID);
     78BOOL   WIN32API HeapUnlock(HANDLE);
     79BOOL   WIN32API HeapValidate(HANDLE,DWORD,LPCVOID);
     80
    6481#endif
  • trunk/include/winconst.h

    r3124 r3196  
    1 /* $Id: winconst.h,v 1.29 2000-03-16 19:16:36 sandervl Exp $ */
     1/* $Id: winconst.h,v 1.30 2000-03-22 18:47:01 sandervl Exp $ */
    22
    33/*
     
    13061306#define VK_QUOTESINGLE_W     0xDE
    13071307#define VK_EXTRA_W           0xE2
     1308
     1309/* Heap flags */
     1310
     1311#define HEAP_NO_SERIALIZE               0x00000001
     1312#define HEAP_GROWABLE                   0x00000002
     1313#define HEAP_GENERATE_EXCEPTIONS        0x00000004
     1314#define HEAP_ZERO_MEMORY                0x00000008
     1315#define HEAP_REALLOC_IN_PLACE_ONLY      0x00000010
     1316#define HEAP_TAIL_CHECKING_ENABLED      0x00000020
     1317#define HEAP_FREE_CHECKING_ENABLED      0x00000040
     1318#define HEAP_DISABLE_COALESCE_ON_FREE   0x00000080
     1319#define HEAP_CREATE_ALIGN_16            0x00010000
     1320#define HEAP_CREATE_ENABLE_TRACING      0x00020000
Note: See TracChangeset for help on using the changeset viewer.