ScnLib_SetLogoImageA/W() | 标准版 | 专业版 | 超级版 | 游戏版 |
C++ |
__declspec(dllimport) BOOL __stdcall ScnLib_SetLogoImageA(LPCSTR pcszPath);
__declspec(dllimport) BOOL __stdcall ScnLib_SetLogoImageW(LPCWSTR pcwszPath); |
✔ | ✔ | ✔ | ✔ |
C# |
[DllImport("ScnLib.dll", CharSet = CharSet.Unicode)] public static extern bool ScnLib_SetLogoImageW(string Path); |
Basic |
Public Declare Unicode Function ScnLib_SetLogoImageW Lib "ScnLib.dll" (ByVal Path As String) As Boolean |
Delphi |
function ScnLib_SetLogoImageA(const Path: PAnsiChar): LongBool; stdcall; external 'ScnLib.dll';
function ScnLib_SetLogoImageW(const Path: PWideChar): LongBool; stdcall; external 'ScnLib.dll'; |
|