Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johnny Cai
wine
Commits
350c04b5
Commit
350c04b5
authored
24 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a couple of WINAPI issues with 16-bit spec files (thanks to
Marcus Meissner).
parent
ef6dca5c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
dlls/kernel/kernel.spec
+2
-2
2 additions, 2 deletions
dlls/kernel/kernel.spec
dlls/user/lstr.c
+9
-0
9 additions, 0 deletions
dlls/user/lstr.c
dlls/user/user.spec
+1
-1
1 addition, 1 deletion
dlls/user/user.spec
memory/string.c
+9
-0
9 additions, 0 deletions
memory/string.c
with
21 additions
and
3 deletions
dlls/kernel/kernel.spec
+
2
−
2
View file @
350c04b5
...
...
@@ -93,7 +93,7 @@ owner kernel32
84 pascal _llseek(word long word) _llseek16
85 pascal16 _lopen(str word) _lopen16
86 pascal16 _lwrite(word ptr word) _lwrite16
87
pascal16
Reserved5
(str str)
strcmp
87
stub
Reserved5
#l
strcmp
16
88 pascal lstrcpy(segptr str) lstrcpy16
89 pascal lstrcat(segstr str) lstrcat16
90 pascal16 lstrlen(str) lstrlen16
...
...
@@ -291,7 +291,7 @@ owner kernel32
345 pascal16 IsSharedSelector(word) IsSharedSelector16
346 pascal16 IsBadHugeReadPtr(segptr long) IsBadHugeReadPtr16
347 pascal16 IsBadHugeWritePtr(segptr long) IsBadHugeWritePtr16
348 pascal16 hmemcpy(ptr ptr long) memcpy
348 pascal16 hmemcpy(ptr ptr long)
h
memcpy
16
349 pascal _hread(word segptr long) WIN16_hread
350 pascal _hwrite(word ptr long) _hwrite16
351 pascal16 BUNNY_351() KERNEL_nop
...
...
This diff is collapsed.
Click to expand it.
dlls/user/lstr.c
+
9
−
0
View file @
350c04b5
...
...
@@ -62,6 +62,15 @@ void WINAPI OemToAnsiBuff16( LPCSTR s, LPSTR d, UINT16 len )
}
/***********************************************************************
* lstrcmp16 (USER.430)
*/
INT16
WINAPI
lstrcmp16
(
LPCSTR
str1
,
LPCSTR
str2
)
{
return
(
INT16
)
strcmp
(
str1
,
str2
);
}
/***********************************************************************
* AnsiUpper16 (USER.431)
*/
...
...
This diff is collapsed.
Click to expand it.
dlls/user/user.spec
+
1
−
1
View file @
350c04b5
...
...
@@ -405,7 +405,7 @@ owner user32
427 pascal16 FindWindowEx(word word str str) FindWindowEx16
428 stub TileWindows
429 stub CascadeWindows
430 pascal16 lstrcmp(str str) strcmp
430 pascal16 lstrcmp(str str)
l
strcmp
16
431 pascal AnsiUpper(segstr) AnsiUpper16
432 pascal AnsiLower(segstr) AnsiLower16
433 pascal16 IsCharAlpha(word) IsCharAlphaA
...
...
This diff is collapsed.
Click to expand it.
memory/string.c
+
9
−
0
View file @
350c04b5
...
...
@@ -29,6 +29,15 @@ static WINE_EXCEPTION_FILTER(page_fault)
}
/***********************************************************************
* hmemcpy16 (KERNEL.348)
*/
void
WINAPI
hmemcpy16
(
LPVOID
dst
,
LPCVOID
src
,
LONG
count
)
{
memcpy
(
dst
,
src
,
count
);
}
/***********************************************************************
* lstrcat16 (KERNEL.89)
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment