Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
c4f815f3
Commit
c4f815f3
authored
Nov 02, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Nov 02, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Declare HeapQueryInformation and HeapSetInformation.
parent
f97bf3e6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
winbase.h
include/winbase.h
+3
-1
winnt.h
include/winnt.h
+4
-0
No files found.
include/winbase.h
View file @
c4f815f3
...
@@ -43,7 +43,7 @@ typedef PRTL_CRITICAL_SECTION_DEBUG PCRITICAL_SECTION_DEBUG;
...
@@ -43,7 +43,7 @@ typedef PRTL_CRITICAL_SECTION_DEBUG PCRITICAL_SECTION_DEBUG;
typedef
PRTL_CRITICAL_SECTION_DEBUG
LPCRITICAL_SECTION_DEBUG
;
typedef
PRTL_CRITICAL_SECTION_DEBUG
LPCRITICAL_SECTION_DEBUG
;
typedef
WAITORTIMERCALLBACKFUNC
WAITORTIMERCALLBACK
;
typedef
WAITORTIMERCALLBACKFUNC
WAITORTIMERCALLBACK
;
#define EXCEPTION_DEBUG_EVENT 1
#define EXCEPTION_DEBUG_EVENT 1
#define CREATE_THREAD_DEBUG_EVENT 2
#define CREATE_THREAD_DEBUG_EVENT 2
#define CREATE_PROCESS_DEBUG_EVENT 3
#define CREATE_PROCESS_DEBUG_EVENT 3
...
@@ -1725,6 +1725,8 @@ BOOL WINAPI HeapDestroy(HANDLE);
...
@@ -1725,6 +1725,8 @@ BOOL WINAPI HeapDestroy(HANDLE);
BOOL
WINAPI
HeapFree
(
HANDLE
,
DWORD
,
LPVOID
);
BOOL
WINAPI
HeapFree
(
HANDLE
,
DWORD
,
LPVOID
);
BOOL
WINAPI
HeapLock
(
HANDLE
);
BOOL
WINAPI
HeapLock
(
HANDLE
);
LPVOID
WINAPI
HeapReAlloc
(
HANDLE
,
DWORD
,
LPVOID
,
SIZE_T
);
LPVOID
WINAPI
HeapReAlloc
(
HANDLE
,
DWORD
,
LPVOID
,
SIZE_T
);
BOOL
WINAPI
HeapQueryInformation
(
HANDLE
,
HEAP_INFORMATION_CLASS
,
PVOID
,
SIZE_T
);
BOOL
WINAPI
HeapSetInformation
(
HANDLE
,
HEAP_INFORMATION_CLASS
,
PVOID
,
SIZE_T
);
SIZE_T
WINAPI
HeapSize
(
HANDLE
,
DWORD
,
LPVOID
);
SIZE_T
WINAPI
HeapSize
(
HANDLE
,
DWORD
,
LPVOID
);
BOOL
WINAPI
HeapUnlock
(
HANDLE
);
BOOL
WINAPI
HeapUnlock
(
HANDLE
);
BOOL
WINAPI
HeapValidate
(
HANDLE
,
DWORD
,
LPCVOID
);
BOOL
WINAPI
HeapValidate
(
HANDLE
,
DWORD
,
LPCVOID
);
...
...
include/winnt.h
View file @
c4f815f3
...
@@ -609,6 +609,10 @@ typedef struct _SINGLE_LIST_ENTRY {
...
@@ -609,6 +609,10 @@ typedef struct _SINGLE_LIST_ENTRY {
FIXME: correct name */
FIXME: correct name */
#define HEAP_SHARED 0x04000000
#define HEAP_SHARED 0x04000000
typedef
enum
_HEAP_INFORMATION_CLASS
{
HeapCompatibilityInformation
,
}
HEAP_INFORMATION_CLASS
;
/* Processor feature flags. */
/* Processor feature flags. */
#define PF_FLOATING_POINT_PRECISION_ERRATA 0
#define PF_FLOATING_POINT_PRECISION_ERRATA 0
#define PF_FLOATING_POINT_EMULATED 1
#define PF_FLOATING_POINT_EMULATED 1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment