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
9012d4e7
Commit
9012d4e7
authored
Jun 12, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add API documentation stubs to make winapi_check happy.
parent
d1ac9c73
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
atl_main.c
dlls/atl/atl_main.c
+3
-0
gdiplus.c
dlls/gdiplus/gdiplus.c
+12
-0
No files found.
dlls/atl/atl_main.c
View file @
9012d4e7
...
...
@@ -547,6 +547,9 @@ typedef struct ATL_PROPMAP_ENTRY
VARTYPE
vt
;
}
ATL_PROPMAP_ENTRY
;
/***********************************************************************
* AtlIPersistStreamInit_Load [ATL.@]
*/
HRESULT
WINAPI
AtlIPersistStreamInit_Load
(
LPSTREAM
pStm
,
ATL_PROPMAP_ENTRY
*
pMap
,
void
*
pThis
,
IUnknown
*
pUnk
)
{
...
...
dlls/gdiplus/gdiplus.c
View file @
9012d4e7
...
...
@@ -45,6 +45,9 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD reason, LPVOID reserved)
return
TRUE
;
}
/*****************************************************
* GdiplusStartup [GDIPLUS.@]
*/
Status
WINAPI
GdiplusStartup
(
ULONG_PTR
*
token
,
const
struct
GdiplusStartupInput
*
input
,
struct
GdiplusStartupOutput
*
output
)
{
...
...
@@ -65,16 +68,25 @@ Status WINAPI GdiplusStartup(ULONG_PTR *token, const struct GdiplusStartupInput
return
Ok
;
}
/*****************************************************
* GdiplusShutdown [GDIPLUS.@]
*/
void
WINAPI
GdiplusShutdown
(
ULONG_PTR
token
)
{
/* FIXME: no object tracking */
}
/*****************************************************
* GdipAlloc [GDIPLUS.@]
*/
void
*
WINGDIPAPI
GdipAlloc
(
SIZE_T
size
)
{
return
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
size
);
}
/*****************************************************
* GdipFree [GDIPLUS.@]
*/
void
WINGDIPAPI
GdipFree
(
void
*
ptr
)
{
HeapFree
(
GetProcessHeap
(),
0
,
ptr
);
...
...
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