Commit 9012d4e7 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Add API documentation stubs to make winapi_check happy.

parent d1ac9c73
......@@ -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)
{
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment