Package | Description |
---|---|
org.safs.natives.win32 |
Modifier and Type | Class and Description |
---|---|
static class |
Kernel32.FileTime
Contains a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC).
|
static class |
Kernel32.SecurityAttribute
The SECURITY_ATTRIBUTES structure contains the security descriptor for an object
and specifies whether the handle retrieved by specifying this structure is inheritable.
|
static class |
User32.CWPSTRUCT |
static class |
User32.KBDLLHOOKSTRUCT
define Hook structure about a low-level keyboard input event.
|
static class |
User32.MOUSEHOOKSTRUCT
Refer to MSDN:
Contains information about a mouse event passed to a WH_MOUSE hook procedure
typedef struct tagMOUSEHOOKSTRUCT {
POINT pt;
HWND hwnd;
UINT wHitTestCode;
ULONG_PTR dwExtraInfo;
} MOUSEHOOKSTRUCT, *PMOUSEHOOKSTRUCT, *LPMOUSEHOOKSTRUCT;
|
static class |
User32.MSG
typedef struct tagMSG {
HWND hwnd;
UINT message;
WPARAM wParam;
LPARAM lParam;
DWORD time;
POINT pt;
} MSG
|
static class |
User32.MSLLHOOKSTRUCT
Contains information about a low-level mouse input event.
|
static class |
User32.POINT
typedef struct tagPOINT {
LONG x;
LONG y;
} POINT, *PPOINT;
|
Copyright © SAS Institute. All Rights Reserved.