Some more recursive include fixes/optimizations.
[wine.git] / include / olectl.h
blob76c152a5380d15061bd481e47235c85744d4a6cf
1 #ifndef __WINE_OLECTL_H
2 #define __WINE_OLECTL_H
4 #include "wintypes.h"
5 #include "ole.h"
7 #define WINOLECTLAPI INT32 WINAPI
9 /*
10 * FONTDESC is used as an OLE encapsulation of the GDI fonts
12 typedef struct tagFONTDESC {
13 UINT32 cbSizeofstruct;
14 LPOLESTR32 lpstrName;
15 CY cySize;
16 SHORT sWeight;
17 SHORT sCharset;
18 BOOL32 fItalic;
19 BOOL32 fUnderline;
20 BOOL32 fStrikeThrough;
21 } FONTDESC, *LPFONTDESC;
23 WINOLECTLAPI OleCreateFontIndirect(LPFONTDESC lpFontDesc, REFIID riid, VOID** ppvObj);
25 #endif /* __WINE_OLECTL_H */