gdiplus: Stub GdipGetFamily.
[wine] / dlls / gdiplus / font.c
1 /*
2  * Copyright (C) 2007 Google (Evan Stade)
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include <stdarg.h>
20
21 #include "windef.h"
22 #include "winbase.h"
23 #include "wingdi.h"
24 #include "winnls.h"
25 #include "winreg.h"
26 #include "wine/debug.h"
27 #include "wine/unicode.h"
28
29 WINE_DEFAULT_DEBUG_CHANNEL (gdiplus);
30
31 #include "objbase.h"
32
33 #include "gdiplus.h"
34 #include "gdiplus_private.h"
35
36 static const REAL mm_per_inch = 25.4;
37 static const REAL inch_per_point = 1.0/72.0;
38
39 static inline REAL get_dpi (void)
40 {
41     REAL dpi;
42     GpGraphics *graphics;
43     HDC hdc = GetDC(0);
44     GdipCreateFromHDC (hdc, &graphics);
45     GdipGetDpiX(graphics, &dpi);
46     GdipDeleteGraphics(graphics);
47     ReleaseDC (0, hdc);
48
49     return dpi;
50 }
51
52 static inline REAL point_to_pixel (REAL point)
53 {
54     return point * get_dpi() * inch_per_point;
55 }
56
57 static inline REAL inch_to_pixel (REAL inch)
58 {
59     return inch * get_dpi();
60 }
61
62 static inline REAL document_to_pixel (REAL doc)
63 {
64     return doc * (get_dpi() / 300.0); /* Per MSDN */
65 }
66
67 static inline REAL mm_to_pixel (REAL mm)
68 {
69     return mm * (get_dpi() / mm_per_inch);
70 }
71
72 /*******************************************************************************
73  * GdipCreateFont [GDIPLUS.@]
74  *
75  * Create a new font based off of a FontFamily
76  *
77  * PARAMS
78  *  *fontFamily     [I] Family to base the font off of
79  *  emSize          [I] Size of the font
80  *  style           [I] Bitwise OR of FontStyle enumeration
81  *  unit            [I] Unit emSize is measured in
82  *  **font          [I] the resulting Font object
83  *
84  * RETURNS
85  *  SUCCESS: Ok
86  *  FAILURE: InvalidParameter if fontfamily or font is NULL.
87  *  FAILURE: FontFamilyNotFound if an invalid FontFamily is given
88  *
89  * NOTES
90  *  UnitDisplay is unsupported.
91  *  emSize is stored separately from lfHeight, to hold the fraction.
92  */
93 GpStatus WINGDIPAPI GdipCreateFont(GDIPCONST GpFontFamily *fontFamily,
94                         REAL emSize, INT style, Unit unit, GpFont **font)
95 {
96     WCHAR facename[LF_FACESIZE];
97     LOGFONTW* lfw;
98     const NEWTEXTMETRICW* tmw;
99     GpStatus stat;
100
101     if (!fontFamily || !font)
102         return InvalidParameter;
103
104     TRACE("%p (%s), %f, %d, %d, %p\n", fontFamily,
105             debugstr_w(fontFamily->FamilyName), emSize, style, unit, font);
106
107     stat = GdipGetFamilyName (fontFamily, facename, 0);
108     if (stat != Ok) return stat;
109     *font = GdipAlloc(sizeof(GpFont));
110
111     tmw = &fontFamily->tmw;
112     lfw = &((*font)->lfw);
113     ZeroMemory(&(*lfw), sizeof(*lfw));
114
115     lfw->lfWeight = tmw->tmWeight;
116     lfw->lfItalic = tmw->tmItalic;
117     lfw->lfUnderline = tmw->tmUnderlined;
118     lfw->lfStrikeOut = tmw->tmStruckOut;
119     lfw->lfCharSet = tmw->tmCharSet;
120     lfw->lfPitchAndFamily = tmw->tmPitchAndFamily;
121     lstrcpynW(lfw->lfFaceName, facename, LF_FACESIZE);
122
123     switch (unit)
124     {
125         case UnitWorld:
126             /* FIXME: Figure out when World != Pixel */
127             lfw->lfHeight = emSize; break;
128         case UnitDisplay:
129             FIXME("Unknown behavior for UnitDisplay! Please report!\n");
130             /* FIXME: Figure out how this works...
131              * MSDN says that if "DISPLAY" is a monitor, then pixel should be
132              * used. That's not what I got. Tests on Windows revealed no output,
133              * and the tests in tests/font crash windows */
134             lfw->lfHeight = 0; break;
135         case UnitPixel:
136             lfw->lfHeight = emSize; break;
137         case UnitPoint:
138             lfw->lfHeight = point_to_pixel(emSize); break;
139         case UnitInch:
140             lfw->lfHeight = inch_to_pixel(emSize); break;
141         case UnitDocument:
142             lfw->lfHeight = document_to_pixel(emSize); break;
143         case UnitMillimeter:
144             lfw->lfHeight = mm_to_pixel(emSize); break;
145     }
146
147     lfw->lfHeight *= -1;
148
149     lfw->lfWeight = style & FontStyleBold ? 700 : 400;
150     lfw->lfItalic = style & FontStyleItalic;
151     lfw->lfUnderline = style & FontStyleUnderline;
152     lfw->lfStrikeOut = style & FontStyleStrikeout;
153
154     (*font)->unit = unit;
155     (*font)->emSize = emSize;
156
157     return Ok;
158 }
159
160 /*******************************************************************************
161  * GdipCreateFontFromLogfontW [GDIPLUS.@]
162  */
163 GpStatus WINGDIPAPI GdipCreateFontFromLogfontW(HDC hdc,
164     GDIPCONST LOGFONTW *logfont, GpFont **font)
165 {
166     HFONT hfont, oldfont;
167     TEXTMETRICW textmet;
168
169     if(!logfont || !font)
170         return InvalidParameter;
171
172     *font = GdipAlloc(sizeof(GpFont));
173     if(!*font)  return OutOfMemory;
174
175     memcpy((*font)->lfw.lfFaceName, logfont->lfFaceName, LF_FACESIZE *
176            sizeof(WCHAR));
177     (*font)->lfw.lfHeight = logfont->lfHeight;
178     (*font)->lfw.lfItalic = logfont->lfItalic;
179     (*font)->lfw.lfUnderline = logfont->lfUnderline;
180     (*font)->lfw.lfStrikeOut = logfont->lfStrikeOut;
181
182     (*font)->emSize = logfont->lfHeight;
183     (*font)->unit = UnitPixel;
184
185     hfont = CreateFontIndirectW(&(*font)->lfw);
186     oldfont = SelectObject(hdc, hfont);
187     GetTextMetricsW(hdc, &textmet);
188
189     (*font)->lfw.lfHeight = -textmet.tmHeight;
190     (*font)->lfw.lfWeight = textmet.tmWeight;
191
192     SelectObject(hdc, oldfont);
193     DeleteObject(hfont);
194
195     return Ok;
196 }
197
198 /*******************************************************************************
199  * GdipCreateFontFromLogfontA [GDIPLUS.@]
200  */
201 GpStatus WINGDIPAPI GdipCreateFontFromLogfontA(HDC hdc,
202     GDIPCONST LOGFONTA *lfa, GpFont **font)
203 {
204     LOGFONTW lfw;
205
206     if(!lfa || !font)
207         return InvalidParameter;
208
209     memcpy(&lfw, lfa, FIELD_OFFSET(LOGFONTA,lfFaceName) );
210
211     if(!MultiByteToWideChar(CP_ACP, 0, lfa->lfFaceName, -1, lfw.lfFaceName, LF_FACESIZE))
212         return GenericError;
213
214     GdipCreateFontFromLogfontW(hdc, &lfw, font);
215
216     return Ok;
217 }
218
219 /*******************************************************************************
220  * GdipDeleteFont [GDIPLUS.@]
221  */
222 GpStatus WINGDIPAPI GdipDeleteFont(GpFont* font)
223 {
224     if(!font)
225         return InvalidParameter;
226
227     GdipFree(font);
228
229     return Ok;
230 }
231
232 /*******************************************************************************
233  * GdipCreateFontFromDC [GDIPLUS.@]
234  */
235 GpStatus WINGDIPAPI GdipCreateFontFromDC(HDC hdc, GpFont **font)
236 {
237     HFONT hfont;
238     LOGFONTW lfw;
239
240     if(!font)
241         return InvalidParameter;
242
243     hfont = (HFONT)GetCurrentObject(hdc, OBJ_FONT);
244     if(!hfont)
245         return GenericError;
246
247     if(!GetObjectW(hfont, sizeof(LOGFONTW), &lfw))
248         return GenericError;
249
250     return GdipCreateFontFromLogfontW(hdc, &lfw, font);
251 }
252
253 /*******************************************************************************
254  * GdipGetFamily [GDIPLUS.@]
255  *
256  * Returns the FontFamily for the specified Font
257  *
258  * PARAMS
259  *  font    [I] Font to request from
260  *  family  [O] Resulting FontFamily object
261  *
262  * RETURNS
263  *  SUCCESS: Ok
264  *  FAILURE: An element of GpStatus
265  */
266 GpStatus WINGDIPAPI GdipGetFamily(GpFont *font, GpFontFamily **family)
267 {
268     FIXME("stub: %p %p\n", font, family);
269
270     return NotImplemented;
271 }
272
273 /******************************************************************************
274  * GdipGetFontSize [GDIPLUS.@]
275  *
276  * Returns the size of the font in Units
277  *
278  * PARAMS
279  *  *font       [I] The font to retrieve size from
280  *  *size       [O] Pointer to hold retrieved value
281  *
282  * RETURNS
283  *  SUCCESS: Ok
284  *  FAILURE: InvalidParamter (font or size was NULL)
285  *
286  * NOTES
287  *  Size returned is actually emSize -- not internal size used for drawing.
288  */
289 GpStatus WINGDIPAPI GdipGetFontSize(GpFont *font, REAL *size)
290 {
291     if (!(font && size)) return InvalidParameter;
292
293     *size = font->emSize;
294
295     return Ok;
296 }
297
298 /*******************************************************************************
299  * GdipGetFontUnit  [GDIPLUS.@]
300  *
301  * PARAMS
302  *  font    [I] Font to retrieve from
303  *  unit    [O] Return value
304  *
305  * RETURNS
306  *  FAILURE: font or unit was NULL
307  *  OK: otherwise
308  */
309 GpStatus WINGDIPAPI GdipGetFontUnit(GpFont *font, Unit *unit)
310 {
311     if (!(font && unit)) return InvalidParameter;
312
313     *unit = font->unit;
314
315     return Ok;
316 }
317
318 /*******************************************************************************
319  * GdipGetLogFontW [GDIPLUS.@]
320  */
321 GpStatus WINGDIPAPI GdipGetLogFontW(GpFont *font, GpGraphics *graphics,
322     LOGFONTW *lfw)
323 {
324     /* FIXME: use graphics */
325     if(!font || !graphics || !lfw)
326         return InvalidParameter;
327
328     *lfw = font->lfw;
329
330     return Ok;
331 }
332
333 /*******************************************************************************
334  * GdipCloneFont [GDIPLUS.@]
335  */
336 GpStatus WINGDIPAPI GdipCloneFont(GpFont *font, GpFont **cloneFont)
337 {
338     if(!font || !cloneFont)
339         return InvalidParameter;
340
341     *cloneFont = GdipAlloc(sizeof(GpFont));
342     if(!*cloneFont)    return OutOfMemory;
343
344     **cloneFont = *font;
345
346     return Ok;
347 }
348
349 /*******************************************************************************
350  * GdipGetFontHeightGivenDPI [GDIPLUS.@]
351  * PARAMS
352  *  font        [I] Font to retrieve DPI from
353  *  dpi         [I] DPI to assume
354  *  height      [O] Return value
355  *
356  * RETURNS
357  *  SUCCESS: Ok
358  *  FAILURE: InvalidParameter if font or height is NULL
359  *
360  * NOTES
361  *  According to MSDN, the result is (lineSpacing)*(fontSize / emHeight)*dpi
362  *  (for anything other than unit Pixel)
363  */
364 GpStatus WINGDIPAPI GdipGetFontHeightGivenDPI(GDIPCONST GpFont *font, REAL dpi, REAL *height)
365 {
366     if (!(font && height)) return InvalidParameter;
367
368     FIXME("%p (%s), %f, %p\n", font,
369             debugstr_w(font->lfw.lfFaceName), dpi, height);
370
371     return NotImplemented;
372 }
373
374 /***********************************************************************
375  * Borrowed from GDI32:
376  *
377  * Elf is really an ENUMLOGFONTEXW, and ntm is a NEWTEXTMETRICEXW.
378  *     We have to use other types because of the FONTENUMPROCW definition.
379  */
380 static INT CALLBACK is_font_installed_proc(const LOGFONTW *elf,
381                             const TEXTMETRICW *ntm, DWORD type, LPARAM lParam)
382 {
383     if (!ntm)
384     {
385         return 1;
386     }
387
388     *(NEWTEXTMETRICW*)lParam = *(const NEWTEXTMETRICW*)ntm;
389
390     return 0;
391 }
392
393 static BOOL find_installed_font(const WCHAR *name, NEWTEXTMETRICW *ntm)
394 {
395     HDC hdc = GetDC(0);
396     BOOL ret = FALSE;
397
398     if(!EnumFontFamiliesW(hdc, name, is_font_installed_proc, (LPARAM)ntm))
399         ret = TRUE;
400
401     ReleaseDC(0, hdc);
402     return ret;
403 }
404
405 /*******************************************************************************
406  * GdipCreateFontFamilyFromName [GDIPLUS.@]
407  *
408  * Creates a font family object based on a supplied name
409  *
410  * PARAMS
411  *  name               [I] Name of the font
412  *  fontCollection     [I] What font collection (if any) the font belongs to (may be NULL)
413  *  FontFamily         [O] Pointer to the resulting FontFamily object
414  *
415  * RETURNS
416  *  SUCCESS: Ok
417  *  FAILURE: FamilyNotFound if the requested FontFamily does not exist on the system
418  *  FAILURE: Invalid parameter if FontFamily or name is NULL
419  *
420  * NOTES
421  *   If fontCollection is NULL then the object is not part of any collection
422  *
423  */
424
425 GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR *name,
426                                         GpFontCollection *fontCollection,
427                                         GpFontFamily **FontFamily)
428 {
429     GpFontFamily* ffamily;
430     NEWTEXTMETRICW ntm;
431
432     TRACE("%s, %p %p\n", debugstr_w(name), fontCollection, FontFamily);
433
434     if (!(name && FontFamily))
435         return InvalidParameter;
436     if (fontCollection)
437         FIXME("No support for FontCollections yet!\n");
438
439     if (!find_installed_font(name, &ntm))
440         return FontFamilyNotFound;
441
442     ffamily = GdipAlloc(sizeof (GpFontFamily));
443     if (!ffamily) return OutOfMemory;
444
445     ffamily->tmw = ntm;
446     lstrcpynW(ffamily->FamilyName, name, LF_FACESIZE);
447
448     *FontFamily = ffamily;
449
450     return Ok;
451 }
452
453 /*******************************************************************************
454  * GdipCloneFontFamily [GDIPLUS.@]
455  *
456  * Creates a deep copy of a Font Family object
457  *
458  * PARAMS
459  *  FontFamily          [I] Font to clone
460  *  clonedFontFamily    [O] The resulting cloned font
461  *
462  * RETURNS
463  *  SUCCESS: Ok
464  */
465 GpStatus WINGDIPAPI GdipCloneFontFamily(GpFontFamily* FontFamily, GpFontFamily** clonedFontFamily)
466 {
467     if (!(FontFamily && clonedFontFamily)) return InvalidParameter;
468
469     TRACE("stub: %p (%s), %p\n", FontFamily,
470             debugstr_w(FontFamily->FamilyName), clonedFontFamily);
471
472     *clonedFontFamily = GdipAlloc(sizeof(GpFontFamily));
473     if (!*clonedFontFamily) return OutOfMemory;
474
475     (*clonedFontFamily)->tmw = FontFamily->tmw;
476     lstrcpyW((*clonedFontFamily)->FamilyName, FontFamily->FamilyName);
477
478     return Ok;
479 }
480
481 /*******************************************************************************
482  * GdipGetFamilyName [GDIPLUS.@]
483  *
484  * Returns the family name into name
485  *
486  * PARAMS
487  *  *family     [I] Family to retrieve from
488  *  *name       [O] WCHARS of the family name
489  *  LANGID      [I] charset
490  *
491  * RETURNS
492  *  SUCCESS: Ok
493  *  FAILURE: InvalidParameter if family is NULL
494  *
495  * NOTES
496  *   If name is a NULL ptr, then both XP and Vista will crash (so we do as well)
497  */
498 GpStatus WINGDIPAPI GdipGetFamilyName (GDIPCONST GpFontFamily *family,
499                                        WCHAR *name, LANGID language)
500 {
501     if (family == NULL)
502          return InvalidParameter;
503
504     TRACE("%p, %p, %d\n", family, name, language);
505
506     if (language != LANG_NEUTRAL)
507         FIXME("No support for handling of multiple languages!\n");
508
509     lstrcpynW (name, family->FamilyName, LF_FACESIZE);
510
511     return Ok;
512 }
513
514
515 /*****************************************************************************
516  * GdipDeleteFontFamily [GDIPLUS.@]
517  *
518  * Removes the specified FontFamily
519  *
520  * PARAMS
521  *  *FontFamily         [I] The family to delete
522  *
523  * RETURNS
524  *  SUCCESS: Ok
525  *  FAILURE: InvalidParameter if FontFamily is NULL.
526  *
527  */
528 GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily)
529 {
530     if (!FontFamily)
531         return InvalidParameter;
532     TRACE("Deleting %p (%s)\n", FontFamily, debugstr_w(FontFamily->FamilyName));
533
534     GdipFree (FontFamily);
535
536     return Ok;
537 }
538
539 GpStatus WINGDIPAPI GdipGetCellAscent(GDIPCONST GpFontFamily *family,
540         INT style, UINT16* CellAscent)
541 {
542     if (!(family && CellAscent)) return InvalidParameter;
543
544     *CellAscent = family->tmw.tmAscent;
545
546     return Ok;
547 }
548
549 GpStatus WINGDIPAPI GdipGetCellDescent(GDIPCONST GpFontFamily *family,
550         INT style, UINT16* CellDescent)
551 {
552     if (!(family && CellDescent)) return InvalidParameter;
553
554     *CellDescent = family->tmw.tmDescent;
555
556     return Ok;
557 }
558
559 /*******************************************************************************
560  * GdipGetEmHeight [GDIPLUS.@]
561  *
562  * Gets the height of the specified family in EmHeights
563  *
564  * PARAMS
565  *  family      [I] Family to retrieve from
566  *  style       [I] (optional) style
567  *  EmHeight    [O] return value
568  *
569  * RETURNS
570  *  SUCCESS: Ok
571  *  FAILURE: InvalidParameter
572  */
573 GpStatus WINGDIPAPI GdipGetEmHeight(GDIPCONST GpFontFamily *family, INT style, UINT16* EmHeight)
574 {
575     if (!(family && EmHeight)) return InvalidParameter;
576
577     TRACE("%p (%s), %d, %p, stub!\n", family,
578             debugstr_w(family->FamilyName), style, EmHeight);
579
580     *EmHeight = family->tmw.ntmSizeEM;
581
582     return Ok;
583 }
584
585
586 /*******************************************************************************
587  * GdipGetLineSpacing [GDIPLUS.@]
588  *
589  * Returns the line spacing in design units
590  *
591  * PARAMS
592  *  family      [I] Family to retrieve from
593  *  style       [I] (Optional) font style
594  *  LineSpacing [O] Return value
595  *
596  * RETURNS
597  *  SUCCESS: Ok
598  *  FAILURE: InvalidParameter (family or LineSpacing was NULL)
599  */
600 GpStatus WINGDIPAPI GdipGetLineSpacing(GDIPCONST GpFontFamily *family,
601         INT style, UINT16* LineSpacing)
602 {
603     if (!(family && LineSpacing)) return InvalidParameter;
604
605     FIXME("stub!\n");
606
607     return NotImplemented;
608 }
609
610 GpStatus WINGDIPAPI GdipIsStyleAvailable(GDIPCONST GpFontFamily* family,
611         INT style, BOOL* IsStyleAvailable)
612 {
613     FIXME("%p %d %p stub!\n", family, style, IsStyleAvailable);
614
615     if (!(family && IsStyleAvailable))
616         return InvalidParameter;
617
618     return NotImplemented;
619 }
620
621 /*****************************************************************************
622  * GdipGetGenericFontFamilyMonospace [GDIPLUS.@]
623  *
624  * Obtains a serif family (Courier New on Windows)
625  *
626  * PARAMS
627  *  **nativeFamily         [I] Where the font will be stored
628  *
629  * RETURNS
630  *  InvalidParameter if nativeFamily is NULL.
631  *  Ok otherwise.
632  */
633 GpStatus WINGDIPAPI GdipGetGenericFontFamilyMonospace(GpFontFamily **nativeFamily)
634 {
635     static const WCHAR CourierNew[] = {'C','o','u','r','i','e','r',' ','N','e','w','\0'};
636
637     if (nativeFamily == NULL) return InvalidParameter;
638
639     return GdipCreateFontFamilyFromName(CourierNew, NULL, nativeFamily);
640 }
641
642 /*****************************************************************************
643  * GdipGetGenericFontFamilySerif [GDIPLUS.@]
644  *
645  * Obtains a serif family (Times New Roman on Windows)
646  *
647  * PARAMS
648  *  **nativeFamily         [I] Where the font will be stored
649  *
650  * RETURNS
651  *  InvalidParameter if nativeFamily is NULL.
652  *  Ok otherwise.
653  */
654 GpStatus WINGDIPAPI GdipGetGenericFontFamilySerif(GpFontFamily **nativeFamily)
655 {
656     static const WCHAR TimesNewRoman[] = {'T','i','m','e','s',' ','N','e','w',' ','R','o','m','a','n','\0'};
657
658     if (nativeFamily == NULL) return InvalidParameter;
659
660     return GdipCreateFontFamilyFromName(TimesNewRoman, NULL, nativeFamily);
661 }
662
663 /*****************************************************************************
664  * GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
665  *
666  * Obtains a serif family (Microsoft Sans Serif on Windows)
667  *
668  * PARAMS
669  *  **nativeFamily         [I] Where the font will be stored
670  *
671  * RETURNS
672  *  InvalidParameter if nativeFamily is NULL.
673  *  Ok otherwise.
674  */
675 GpStatus WINGDIPAPI GdipGetGenericFontFamilySansSerif(GpFontFamily **nativeFamily)
676 {
677     /* FIXME: On Windows this is called Microsoft Sans Serif, this shouldn't
678      * affect anything */
679     static const WCHAR MSSansSerif[] = {'M','S',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
680
681     if (nativeFamily == NULL) return InvalidParameter;
682
683     return GdipCreateFontFamilyFromName(MSSansSerif, NULL, nativeFamily);
684 }
685
686 /*****************************************************************************
687  * GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
688  */
689 GpStatus WINGDIPAPI GdipNewPrivateFontCollection(GpFontCollection** fontCollection)
690 {
691     FIXME("stub %p\n", fontCollection);
692
693     if (!fontCollection)
694         return InvalidParameter;
695
696     return NotImplemented;
697 }
698
699 /*****************************************************************************
700  * GdipDeletePrivateFontCollection [GDIPLUS.@]
701  */
702 GpStatus WINGDIPAPI GdipDeletePrivateFontCollection(GpFontCollection **fontCollection)
703 {
704     FIXME("stub %p\n", fontCollection);
705
706     if (!fontCollection)
707         return InvalidParameter;
708
709     return NotImplemented;
710 }
711
712 /*****************************************************************************
713  * GdipPrivateAddFontFile [GDIPLUS.@]
714  */
715 GpStatus WINGDIPAPI GdipPrivateAddFontFile(GpFontCollection* fontCollection,
716         GDIPCONST WCHAR* filename)
717 {
718     FIXME("stub: %p, %s\n", fontCollection, debugstr_w(filename));
719
720     if (!(fontCollection && filename))
721         return InvalidParameter;
722
723     return NotImplemented;
724 }
725
726 /*****************************************************************************
727  * GdipGetFontCollectionFamilyCount [GDIPLUS.@]
728  */
729 GpStatus WINGDIPAPI GdipGetFontCollectionFamilyCount(
730         GpFontCollection* fontCollection, INT* numFound)
731 {
732     FIXME("stub: %p, %p\n", fontCollection, numFound);
733
734     if (!(fontCollection && numFound))
735         return InvalidParameter;
736
737     return NotImplemented;
738 }
739
740 /*****************************************************************************
741  * GdipGetFontCollectionFamilyList [GDIPLUS.@]
742  */
743 GpStatus WINGDIPAPI GdipGetFontCollectionFamilyList(
744         GpFontCollection* fontCollection, INT numSought,
745         GpFontFamily* gpfamilies[], INT* numFound)
746 {
747     FIXME("stub: %p, %d, %p, %p\n", fontCollection, numSought, gpfamilies,
748             numFound);
749
750     if (!(fontCollection && gpfamilies && numFound))
751         return InvalidParameter;
752
753     return NotImplemented;
754 }