[YAROTOWS] Reintegrate the branch. For a brighter future.
[reactos.git] / reactos / subsystems / win32 / win32k / include / focus.h
index eee631c..299efb5 100644 (file)
@@ -1,25 +1,24 @@
-#ifndef _WIN32K_FOCUS_H
-#define _WIN32K_FOCUS_H
+#pragma once
 
 /*
  * These functions take the window handles from current message queue.
  */
 HWND FASTCALL
-IntGetCaptureWindow();
+IntGetCaptureWindow(VOID);
 HWND FASTCALL
-IntGetFocusWindow();
+IntGetFocusWindow(VOID);
 
 /*
  * These functions take the window handles from current thread queue.
  */
 HWND FASTCALL
-IntGetThreadFocusWindow();
+IntGetThreadFocusWindow(VOID);
+HWND APIENTRY IntGetCapture(VOID);
+HWND FASTCALL UserGetActiveWindow(VOID);
 
 BOOL FASTCALL
-co_IntMouseActivateWindow(PWINDOW_OBJECT Window);
+co_IntMouseActivateWindow(PWND Window);
 BOOL FASTCALL
-co_IntSetForegroundWindow(PWINDOW_OBJECT Window);
+co_IntSetForegroundWindow(PWND Window);
 HWND FASTCALL
-co_IntSetActiveWindow(PWINDOW_OBJECT Window);
-
-#endif /* _WIN32K_FOCUS_H */
+co_IntSetActiveWindow(PWND Window);