ScnLib_SelectCaptureRegion() | 标准版 | 专业版 | 超级版 | 游戏版 |
C++ |
__declspec(dllimport) BOOL __stdcall ScnLib_SelectCaptureRegion(long *left, long *top, long *right, long *bottom, HWND *pHWND); |
✘ | ✔ | ✔ | ✔ |
C# |
[DllImport("ScnLib.dll")] public static extern bool ScnLib_SelectCaptureRegion(ref int left, ref int top, ref int right, ref int bottom, ref IntPtr Wnd); |
Basic |
Public Declare Function ScnLib_SelectCaptureRegion Lib "ScnLib.dll" (ByRef left As Int32, ByRef top As Int32, ByRef right As Int32, ByRef bottom As Int32, ByRef Wnd As IntPtr) As Boolean |
Delphi |
function ScnLib_SelectCaptureRegion(var left: Integer; var top: Integer; var right: Integer; var bottom: Integer; var Wnd: THandle): LongBool; stdcall; external 'ScnLib.dll'; |
|