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
16bdc256
Commit
16bdc256
authored
Feb 02, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Feb 02, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented KERNEL.434 (UnicodeToAnsi).
parent
6ec6492f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
kernel.spec
if1632/kernel.spec
+1
-1
string.c
memory/string.c
+13
-0
No files found.
if1632/kernel.spec
View file @
16bdc256
...
...
@@ -338,7 +338,7 @@ file krnl386.exe
423 stub LogApiThk
431 pascal16 IsPeFormat(str word) IsPeFormat
432 stub FileTimeToLocalFileTime
434
stub
UnicodeToAnsi
434
pascal16 UnicodeToAnsi(ptr ptr word)
UnicodeToAnsi
435 stub GetTaskFlags
436 stub _ConfirmSysLevel
437 stub _CheckNotSysLevel
...
...
memory/string.c
View file @
16bdc256
...
...
@@ -497,6 +497,19 @@ LPSTR WINAPI lstrcpynWtoA( LPSTR dst, LPCWSTR src, INT32 n )
return
dst
;
}
/***********************************************************************
* UnicodeToAnsi (KERNEL.434)
*/
INT16
WINAPI
UnicodeToAnsi
(
LPCWSTR
src
,
LPSTR
dst
,
INT16
codepage
)
{
if
(
codepage
!=
-
1
)
FIXME
(
string
,
"codepage %d not supported
\n
"
,
codepage
);
lstrcpyWtoA
(
dst
,
src
);
return
(
INT16
)
lstrlen32A
(
dst
);
}
/***********************************************************************
* Copy (GDI.250)
...
...
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