Esempio n. 1
0
 public static extern BOOL PostMessageW(
     HWND hWnd,
     WM Msg,
     WPARAM wParam,
     LPARAM lParam
     );
Esempio n. 2
0
 public static extern BOOL CloseWindow(
     HWND hWnd
     );
Esempio n. 3
0
 public static extern BOOL DestroyWindow(
     HWND hWnd
     );
Esempio n. 4
0
 public static extern int ReleaseDC(
     HWND hWnd,
     HDC hDC
     );
Esempio n. 5
0
 public static extern BOOL EnableWindow(
     HWND hWnd,
     BOOL bEnable
     );
Esempio n. 6
0
 public static extern BOOL InvalidateRect(
     HWND hWnd,
     IntPtr lpRect,
     BOOL bErase
     );
Esempio n. 7
0
 public static extern HDC GetDC(
     HWND hWnd
     );
Esempio n. 8
0
 public static extern HDC BeginPaint(
     HWND hWnd,
     ref PAINTSTRUCT lpPaint
     );
Esempio n. 9
0
 public static extern BOOL EndPaint(
     HWND hWnd,
     ref PAINTSTRUCT lpPaint
     );
Esempio n. 10
0
 public static extern BOOL ShowWindow(
     HWND hWnd,
     SW nCmdShow
     );
Esempio n. 11
0
 public static extern int MessageBoxW(
     HWND hWnd,
     string lpText,
     string lpCaption,
     MB uType
     );
Esempio n. 12
0
 public static extern bool GetMessageW(
     ref MSG lpMsg,
     HWND hWnd,
     UINT wMsgFilterMin,
     UINT wMsgFilterMax
     );
Esempio n. 13
0
 public static extern BOOL GetClientRect(
     HWND hWnd,
     out RECT lpRect
     );
Esempio n. 14
0
 public static extern LRESULT DefWindowProcW(
     HWND hWnd,
     WM Msg,
     WPARAM wParam,
     LPARAM lParam
     );