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
d97f7cde
Commit
d97f7cde
authored
Aug 17, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Aug 17, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
9f7c51d0
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
5 deletions
+11
-5
gdi16.c
dlls/gdi/gdi16.c
+1
-0
kernel_main.c
dlls/kernel/kernel_main.c
+5
-1
compobj.c
dlls/ole32/compobj.c
+1
-1
ole32.spec
dlls/ole32/ole32.spec
+1
-1
shellord.c
dlls/shell32/shellord.c
+1
-1
umon.c
dlls/urlmon/umon.c
+2
-1
No files found.
dlls/gdi/gdi16.c
View file @
d97f7cde
...
...
@@ -1253,6 +1253,7 @@ void WINAPI Resurrection16(HDC16 hdc,
/**********************************************************************
* CreateMetaFile (GDI.125)
* CreateMetaFile16 (GDI32.@)
*/
HDC16
WINAPI
CreateMetaFile16
(
LPCSTR
filename
)
{
...
...
dlls/kernel/kernel_main.c
View file @
d97f7cde
...
...
@@ -156,7 +156,11 @@ LONG WINAPI KERNEL_nop(void)
return
0
;
}
BOOL
WINAPI
SwitchToThread
(
VOID
)
/***********************************************************************
* SwitchToThread (KERNEL32.@)
*/
BOOL
WINAPI
SwitchToThread
(
void
)
{
Sleep
(
0
);
return
1
;
...
...
dlls/ole32/compobj.c
View file @
d97f7cde
...
...
@@ -1734,7 +1734,7 @@ static int nStatCounter = 0; /* global */
static
HMODULE
hOleAut32
=
0
;
/* global */
/***********************************************************************
* CoGetState [OLE32.
@
]
* CoGetState [OLE32.
24
]
*
* NOTES: might be incomplete
*/
...
...
dlls/ole32/ole32.spec
View file @
d97f7cde
...
...
@@ -23,7 +23,7 @@ init OLE32_DllEntryPoint
21 stdcall CoGetMarshalSizeMax(ptr ptr ptr long ptr long) CoGetMarshalSizeMax
22 stdcall CoGetPSClsid(ptr ptr) CoGetPSClsid
23 stdcall CoGetStandardMarshal(ptr ptr long ptr long ptr) CoGetStandardMarshal
24 st
ub
CoGetState
24 st
dcall CoGetState(ptr)
CoGetState
25 stub CoGetTreatAsClass # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
26 stdcall CoInitialize(ptr) CoInitialize
27 stdcall CoInitializeWOW(long long) CoInitializeWOW
...
...
dlls/shell32/shellord.c
View file @
d97f7cde
...
...
@@ -1008,7 +1008,7 @@ BOOL WINAPI DAD_DragMove(POINT p)
return
FALSE
;
}
/*************************************************************************
* DAD_Leave [SHELL32.132]
* DAD_
Drag
Leave [SHELL32.132]
*
*/
BOOL
WINAPI
DAD_DragLeave
(
VOID
)
...
...
dlls/urlmon/umon.c
View file @
d97f7cde
...
...
@@ -393,7 +393,8 @@ static void CALLBACK URLMON_InternetCallback(HINTERNET hinet, /*DWORD_PTR*/ DWOR
This->filesize = len;
break;
}
}
}
return;
}
...
...
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