Add API documentation stubs to make winapi_check happy.
This commit is contained in:
parent
d1ac9c73f6
commit
9012d4e72f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue