[OSK] General refactoring
[reactos.git] / base / applications / osk / main.h
diff --git a/base/applications/osk/main.h b/base/applications/osk/main.h
deleted file mode 100644 (file)
index 5ce6a7a..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * PROJECT:         ReactOS On-Screen Keyboard
- * LICENSE:         GPL - See COPYING in the top level directory
- * PURPOSE:         On screen keyboard.
- * COPYRIGHT:       Denis ROBERT
- *                  Copyright 2019 BiČ™oc George (fraizeraust99 at gmail dot com)
- */
-
-#ifndef _OSKMAIN_H
-#define _OSKMAIN_H
-
-/* INCLUDES *******************************************************************/
-
-#include "osk_res.h"
-
-/* TYPES **********************************************************************/
-
-typedef struct
-{
-    HINSTANCE  hInstance;
-    HWND       hMainWnd;
-    HBRUSH     hBrushGreenLed;
-    UINT_PTR   iTimer;
-    /* FIXME: To be deleted when ReactOS will support WS_EX_NOACTIVATE */
-    HWND       hActiveWnd;
-    BOOL       bShowWarning;
-    BOOL       bIsEnhancedKeyboard;
-    BOOL       bSoundClick;
-    BOOL       bAlwaysOnTop;
-    INT        PosX;
-    INT        PosY;
-} OSK_GLOBALS;
-
-/* DEFINES ********************************************************************/
-
-extern OSK_GLOBALS Globals;
-
-#define countof(x) (sizeof(x) / sizeof((x)[0]))
-#define MAX_BUFF 256
-
-#endif
-
-/* EOF */