ScnLib_GetGamePathA/W() | 标准版 | 专业版 | 超级版 | 游戏版 |
C++ |
__declspec(dllimport) void __stdcall ScnLib_GetGamePathA(LPSTR pszPath);
__declspec(dllimport) void __stdcall ScnLib_GetGamePathW(LPWSTR pwszPath); |
✘ | ✘ | ✘ | ✔ |
C# |
[DllImport("ScnLib.dll", CharSet = CharSet.Unicode)] public static extern void ScnLib_GetGamePathW(StringBuilder Path); |
Basic |
Public Declare Unicode Sub ScnLib_GetGamePathW Lib "ScnLib.dll" (ByVal Path As StringBuilder) |
Delphi |
procedure ScnLib_GetGamePathA(Path: PAnsiChar); stdcall; external 'ScnLib.dll';
procedure ScnLib_GetGamePathW(Path: PWideChar); stdcall; external 'ScnLib.dll'; |
|