Changeset 137 for Include/api_gdi.sbp


Ignore:
Timestamp:
Mar 7, 2007, 5:36:31 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

#55#73#75とりあえず完了

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/api_gdi.sbp

    r125 r137  
    55#define _INC_GDI
    66
     7#ifdef UNICODE
     8Const _FuncName_CreateFontIndirect = "CreateFontIndirectW"
     9#else
     10Const _FuncName_CreateFontIndirect = "CreateFontIndirectA"
     11#endif
    712
    813Const CLR_INVALID =   &HFFFFFFFF
     
    661666#endif
    662667Declare Function CreateFontIndirectA Lib "gdi32" (ByRef lf As LOGFONTA) As HFONT
    663 Declare Function CreateFontIndirect Lib "gdi32" Alias "CreateFontIndirectA" (ByRef lf As LOGFONT) As HFONT
     668Declare Function CreateFontIndirect Lib "gdi32" Alias _FuncName_CreateFontIndirect (ByRef lf As LOGFONT) As HFONT
    664669
    665670Declare Function CreateHatchBrush Lib "gdi32" (fnStyle As Long, clrref As COLORREF) As HBRUSH
Note: See TracChangeset for help on using the changeset viewer.