Various cosmetic changes.
[wine] / dlls / oleaut32 / stubs.c
1 /*
2  * OlePro32 Stubs
3  *
4  * Copyright 1999 Corel Corporation
5  *
6  * Sean Langley
7  */
8
9 #include "windef.h"
10 #include "winbase.h"
11 #include "wingdi.h"
12 #include "winuser.h"
13 #include "debugtools.h"
14 #include "ole2.h"
15 #include "olectl.h"
16
17 DEFAULT_DEBUG_CHANNEL(ole);
18
19 /***********************************************************************
20  * OleIconToCursor (OLEAUT32.415)
21  */
22 HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
23 {
24         FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
25         return S_OK;
26 }
27
28