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