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
f2cb86de
Commit
f2cb86de
authored
Mar 21, 2018
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl: Add prefixes on all C runtime functions.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e626524e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+5
-2
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+2
-2
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
f2cb86de
...
...
@@ -3342,7 +3342,10 @@ void * __cdecl NTOSKRNL_memset( void *dst, int c, size_t n )
return
memset
(
dst
,
c
,
n
);
}
int
__cdecl
_stricmp
(
LPCSTR
str1
,
LPCSTR
str2
)
/*********************************************************************
* _stricmp (NTOSKRNL.@)
*/
int
__cdecl
NTOSKRNL__stricmp
(
LPCSTR
str1
,
LPCSTR
str2
)
{
return
strcasecmp
(
str1
,
str2
);
}
...
...
@@ -3350,7 +3353,7 @@ int __cdecl _stricmp( LPCSTR str1, LPCSTR str2 )
/*********************************************************************
* _strnicmp (NTOSKRNL.@)
*/
int
__cdecl
_strnicmp
(
LPCSTR
str1
,
LPCSTR
str2
,
size_t
n
)
int
__cdecl
NTOSKRNL_
_strnicmp
(
LPCSTR
str1
,
LPCSTR
str2
,
size_t
n
)
{
return
strncasecmp
(
str1
,
str2
,
n
);
}
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
f2cb86de
...
...
@@ -1426,9 +1426,9 @@
@ cdecl -private _purecall() msvcrt._purecall
@ varargs -private _snprintf(ptr long str) msvcrt._snprintf
@ varargs -private _snwprintf(ptr long wstr) msvcrt._snwprintf
@ cdecl -private _stricmp(str str)
@ cdecl -private _stricmp(str str)
NTOSKRNL__stricmp
@ cdecl -private _strlwr(str) msvcrt._strlwr
@ cdecl -private _strnicmp(str str long) _strnicmp
@ cdecl -private _strnicmp(str str long)
NTOSKRNL_
_strnicmp
@ cdecl -private _strnset(str long long) msvcrt._strnset
@ cdecl -private _strrev(str) msvcrt._strrev
@ cdecl -private _strset(str long) msvcrt._strset
...
...
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