4 * Copyright 2003 Marcus Meissner
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include <wine/test.h>
41 static HMODULE hOleaut32
;
43 static HRESULT (WINAPI
*pOleCreateFontIndirect
)(LPFONTDESC
,REFIID
,LPVOID
*);
51 hOleaut32
= LoadLibraryA("oleaut32.dll");
52 pOleCreateFontIndirect
= (void*)GetProcAddress(hOleaut32
, "OleCreateFontIndirect");
53 if (!pOleCreateFontIndirect
)
56 hres
= pOleCreateFontIndirect(NULL
, &IID_IFont
, &pvObj
);
59 ok(hres
== S_OK
,"OCFI (NULL,..) does not return 0, but 0x%08lx\n",hres
);
60 ok(font
!= NULL
,"OCFI (NULL,..) returns NULL, instead of !NULL\n");
63 hres
= IFont_QueryInterface( font
, &IID_IFont
, &pvObj
);
65 ok(hres
== S_OK
,"IFont_QI does not return S_OK, but 0x%08lx\n", hres
);
66 ok(pvObj
!= NULL
,"IFont_QI does return NULL, instead of a ptr\n");