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
faa05bd2
Commit
faa05bd2
authored
Mar 28, 1999
by
Andreas Mohr
Committed by
Alexandre Julliard
Mar 28, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing WINAPIs.
parent
702aec67
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
crtdll.c
misc/crtdll.c
+2
-2
ddeml.c
misc/ddeml.c
+1
-1
ole2disp.c
ole/ole2disp.c
+2
-2
No files found.
misc/crtdll.c
View file @
faa05bd2
...
...
@@ -2036,7 +2036,7 @@ VOID __cdecl CRTDLL__dllonexit ()
* wcstok (CRTDLL.519)
* Like strtok, but for wide character strings. s is modified, yes.
*/
LPWSTR
CRTDLL_wcstok
(
LPWSTR
s
,
LPCWSTR
delim
)
{
LPWSTR
__cdecl
CRTDLL_wcstok
(
LPWSTR
s
,
LPCWSTR
delim
)
{
static
LPWSTR
nexttok
=
NULL
;
LPWSTR
x
,
ret
;
...
...
@@ -2060,7 +2060,7 @@ LPWSTR CRTDLL_wcstok(LPWSTR s,LPCWSTR delim) {
* wcstol (CRTDLL.520)
* Like strtol, but for wide character strings.
*/
INT
CRTDLL_wcstol
(
LPWSTR
s
,
LPWSTR
*
end
,
INT
base
)
{
INT
__cdecl
CRTDLL_wcstol
(
LPWSTR
s
,
LPWSTR
*
end
,
INT
base
)
{
LPSTR
sA
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
s
),
endA
;
INT
ret
=
strtol
(
sA
,
&
endA
,
base
);
...
...
misc/ddeml.c
View file @
faa05bd2
...
...
@@ -729,7 +729,7 @@ DWORD WINAPI DdeQueryStringW(DWORD idInst, HSZ hsz, LPWSTR psz, DWORD cchMax, IN
* 1.0 March 1999 K Matthews stub only
*/
DWORD
DdeQueryString16
(
DWORD
idInst
,
HSZ
hsz
,
LPSTR
lpsz
,
DWORD
cchMax
,
int
codepage
)
DWORD
WINAPI
DdeQueryString16
(
DWORD
idInst
,
HSZ
hsz
,
LPSTR
lpsz
,
DWORD
cchMax
,
int
codepage
)
{
FIXME
(
ddeml
,
"(%ld, 0x%lx, %p, %ld, %d): stub
\n
"
,
idInst
,
...
...
ole/ole2disp.c
View file @
faa05bd2
...
...
@@ -290,7 +290,7 @@ int WINAPI SysStringByteLen(BSTR str)
/******************************************************************************
* CreateDispTypeInfo [OLE2DISP.31]
*/
HRESULT
CreateDispTypeInfo16
(
HRESULT
WINAPI
CreateDispTypeInfo16
(
INTERFACEDATA
*
pidata
,
LCID
lcid
,
ITypeInfo
**
pptinfo
...
...
@@ -302,7 +302,7 @@ HRESULT CreateDispTypeInfo16(
/******************************************************************************
* RegisterActiveObject [OLE2DISP.35]
*/
HRESULT
RegisterActiveObject16
(
HRESULT
WINAPI
RegisterActiveObject16
(
IUnknown
*
punk
,
REFCLSID
rclsid
,
DWORD
dwFlags
,
unsigned
long
*
pdwRegister
)
{
char
buf
[
80
];
...
...
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