ScnLib_SetLogoTextStyleA/W() | 标准版 | 专业版 | 超级版 | 至尊版 |
| C++ |
__declspec(dllimport) BOOL __stdcall ScnLib_SetLogoTextStyleA(const LOGFONTA *lfFont, COLORREF crColor, BOOL bShadow);
__declspec(dllimport) BOOL __stdcall ScnLib_SetLogoTextStyleW(const LOGFONTW *lfFont, COLORREF crColor, BOOL bShadow); |
✔ | ✔ | ✔ | ✔ |
| C# |
[DllImport("ScnLib.dll", CharSet = CharSet.Unicode)] public static extern bool ScnLib_SetLogoTextStyleW([MarshalAs(UnmanagedType.LPStruct)]LOGFONT Font, uint Color, bool Shadow); |
| Basic |
Public Declare Unicode Function ScnLib_SetLogoTextStyleW Lib "ScnLib.dll" (<MarshalAs(UnmanagedType.LPStruct)> Font As LOGFONT, ByVal Color As UInt32, ByVal Shadow As Boolean) As Boolean |
| Delphi |
function ScnLib_SetLogoTextStyleA(const Font: tagLogFontA; Color: LongWord; Shadow: LongBool): LongBool; stdcall; external 'ScnLib.dll';
function ScnLib_SetLogoTextStyleW(const Font: tagLogFontW; Color: LongWord; Shadow: LongBool): LongBool; stdcall; external 'ScnLib.dll'; |
|