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
da8b582c
Commit
da8b582c
authored
Sep 02, 2003
by
Eric Pouech
Committed by
Alexandre Julliard
Sep 02, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a few missing definitions.
parent
a98f1297
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
commctrl.h
include/commctrl.h
+4
-0
dbghelp.h
include/dbghelp.h
+14
-0
winbase.h
include/winbase.h
+2
-1
No files found.
include/commctrl.h
View file @
da8b582c
...
...
@@ -3504,6 +3504,10 @@ typedef struct NMLVSCROLL
#define ListView_SubItemHitTest(hwndLV, plvhti) \
(int)SNDMSGA((hwndLV), LVM_SUBITEMHITTEST, 0, (LPARAM)(LPLVHITTESTINFO)(plvhti))
#define ListView_GetSelectionMark(hwndLV) \
(int)SNDMSG((hwndLV), LVM_GETSELECTIONMARK, 0, 0)
#define ListView_SetSelectionMark(hwndLV, iItem) \
(int)SNDMSG((hwndLV), LVM_SETSELECTIONMARK, 0, (LPARAM)(iItem))
/* Tab Control */
...
...
include/dbghelp.h
View file @
da8b582c
...
...
@@ -527,6 +527,7 @@ typedef struct _MINIDUMP_THREAD_LIST
MINIDUMP_THREAD
Threads
[
1
];
/* FIXME: no support of 0 sized array */
}
MINIDUMP_THREAD_LIST
,
*
PMINIDUMP_THREAD_LIST
;
/*************************
* MODULE handling *
*************************/
...
...
@@ -628,6 +629,9 @@ BOOL WINAPI SymEnumTypes(HANDLE hProcess, DWORD BaseOfDll,
PVOID
UserContext
);
BOOL
WINAPI
SymGetTypeFromName
(
HANDLE
hProcess
,
DWORD
BaseOfDll
,
LPSTR
Name
,
PSYMBOL_INFO
Symbol
);
BOOL
WINAPI
SymEnumSymbols
(
HANDLE
hProcess
,
ULONG
BaseOfDll
,
PCSTR
Mask
,
PSYM_ENUMERATESYMBOLS_CALLBACK
EnumSymbolsCallback
,
PVOID
UserContext
);
/*************************
* Source Files *
...
...
@@ -642,6 +646,9 @@ BOOL WINAPI SymEnumSourceFiles(HANDLE hProcess, ULONG ModBase, LPSTR Mask,
/*************************
* File & image handling *
*************************/
BOOL
WINAPI
SymInitialize
(
HANDLE
hProcess
,
PSTR
UserSearchPath
,
BOOL
fInvadeProcess
);
BOOL
WINAPI
SymCleanup
(
HANDLE
hProcess
);
HANDLE
WINAPI
FindDebugInfoFile
(
PSTR
FileName
,
PSTR
SymbolPath
,
PSTR
DebugFilePath
);
typedef
BOOL
(
CALLBACK
*
PFIND_DEBUG_FILE_CALLBACK
)(
HANDLE
FileHandle
,
PSTR
FileName
,
PVOID
CallerData
);
...
...
@@ -670,6 +677,13 @@ PIMAGE_SECTION_HEADER WINAPI ImageRvaToSection(PIMAGE_NT_HEADERS NtHeaders,
PVOID
WINAPI
ImageRvaToVa
(
PIMAGE_NT_HEADERS
NtHeaders
,
PVOID
Base
,
ULONG
Rva
,
OUT
PIMAGE_SECTION_HEADER
*
LastRvaSection
);
/*************************
* Context management *
*************************/
BOOL
WINAPI
SymSetContext
(
HANDLE
hProcess
,
PIMAGEHLP_STACK_FRAME
StackFrame
,
PIMAGEHLP_CONTEXT
Context
);
#ifdef __cplusplus
}
/* extern "C" */
#endif
/* defined(__cplusplus) */
...
...
include/winbase.h
View file @
da8b582c
...
...
@@ -1547,9 +1547,10 @@ BOOL WINAPI SetFileSecurityW(LPCWSTR,SECURITY_INFORMATION,PSECURITY_DESCR
BOOL
WINAPI
SetFileTime
(
HANDLE
,
const
FILETIME
*
,
const
FILETIME
*
,
const
FILETIME
*
);
BOOL
WINAPI
SetHandleInformation
(
HANDLE
,
DWORD
,
DWORD
);
BOOL
WINAPI
SetKernelObjectSecurity
(
HANDLE
,
SECURITY_INFORMATION
,
PSECURITY_DESCRIPTOR
);
BOOL
WINAPI
SetLocalTime
(
const
SYSTEMTIME
*
);
BOOL
WINAPI
SetNamedPipeHandleState
(
HANDLE
,
LPDWORD
,
LPDWORD
,
LPDWORD
);
BOOL
WINAPI
SetPriorityClass
(
HANDLE
,
DWORD
);
BOOL
WINAPI
Set
LocalTime
(
const
SYSTEMTIME
*
);
BOOL
WINAPI
Set
ProcessAffinityMask
(
HANDLE
,
DWORD_PTR
);
BOOL
WINAPI
SetSecurityDescriptorDacl
(
PSECURITY_DESCRIPTOR
,
BOOL
,
PACL
,
BOOL
);
BOOL
WINAPI
SetSecurityDescriptorGroup
(
PSECURITY_DESCRIPTOR
,
PSID
,
BOOL
);
BOOL
WINAPI
SetSecurityDescriptorOwner
(
PSECURITY_DESCRIPTOR
,
PSID
,
BOOL
);
...
...
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