Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
f3899c26
Commit
f3899c26
authored
Feb 09, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Better match the PSDK types and fix the winapi_check warnings.
parent
fe787391
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
misc.c
dlls/ntdll/misc.c
+1
-1
string.c
dlls/ntdll/string.c
+2
-2
win32.api
tools/winapi/win32.api
+10
-1
No files found.
dlls/ntdll/misc.c
View file @
f3899c26
...
...
@@ -149,7 +149,7 @@ int CDECL NTDLL_abs( int i )
/*********************************************************************
* labs (NTDLL.@)
*/
long
int
CDECL
NTDLL_labs
(
long
int
i
)
long
CDECL
NTDLL_labs
(
long
i
)
{
return
labs
(
i
);
}
...
...
dlls/ntdll/string.c
View file @
f3899c26
...
...
@@ -105,8 +105,8 @@ void __cdecl NTDLL_qsort( void *base, size_t nmemb, size_t size,
/*********************************************************************
* _lfind (NTDLL.@)
*/
void
*
__cdecl
_lfind
(
const
void
*
key
,
const
void
*
base
,
size_
t
*
nmemb
,
size_
t
size
,
int
(
*
compar
)(
const
void
*
,
const
void
*
)
)
void
*
__cdecl
_lfind
(
const
void
*
key
,
const
void
*
base
,
unsigned
in
t
*
nmemb
,
unsigned
in
t
size
,
int
(
*
compar
)(
const
void
*
,
const
void
*
)
)
{
return
lfind
(
key
,
base
,
nmemb
,
size
,
compar
);
}
...
...
tools/winapi/win32.api
View file @
f3899c26
...
...
@@ -2816,6 +2816,7 @@ WORD
int
long
obj_handle_t
size_t
unsigned int
unsigned long
...
...
@@ -2833,6 +2834,7 @@ ULONGLONG
ANSI_STRING *
BOOLEAN *
BYTE *
CLIENT_ID *
CONTEXT *
CURDIR *
...
...
@@ -2895,6 +2897,7 @@ PIMAGE_NT_HEADERS
PIMAGE_SECTION_HEADER
PIO_APC_ROUTINE
PIO_STATUS_BLOCK
PKEY_MULTIPLE_VALUE_INFORMATION
PLARGE_INTEGER
PLDR_MODULE *
PLONG
...
...
@@ -2914,11 +2917,14 @@ PRTL_THREAD_START_ROUTINE
PRTL_USER_PROCESS_PARAMETERS
PRTL_WORK_ITEM_ROUTINE
PSECURITY_DESCRIPTOR
PSECURITY_DESCRIPTOR *
PSECURITY_DESCRIPTOR_CONTROL
PSECURITY_QUALITY_OF_SERVICE
PSID
PSID *
PSID_IDENTIFIER_AUTHORITY
PSLIST_ENTRY
PSLIST_HEADER
PSTRING
PSYSTEM_MODULE_INFORMATION
PTIME_FIELDS
...
...
@@ -2927,6 +2933,7 @@ PTOKEN_GROUPS
PTOKEN_PRIVILEGES
PULARGE_INTEGER
PULONG
PULONG_PTR
PUNICODE_STRING
PVECTORED_EXCEPTION_HANDLER
PVOID
...
...
@@ -2946,7 +2953,6 @@ RTL_USER_PROCESS_PARAMETERS **
SECURITY_DESCRIPTOR *
SIZE_T *
STRING *
TEB *
UINT *
ULONG *
ULONGLONG *
...
...
@@ -2954,9 +2960,12 @@ UNICODE_STRING *
USHORT *
VOID *
WCHAR **
char **
int *
int (*)(void *, void *)
obj_handle_t *
union cptable *
unsigned int *
va_list
va_list *
void *
...
...
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