2014-12-05 21:43:00 +00:00
|
|
|
/*
|
2014-12-05 22:09:10 +00:00
|
|
|
* PROJECT: ReactOS On-Screen Keyboard
|
2014-12-05 21:43:00 +00:00
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
|
|
* PURPOSE: On screen keyboard.
|
2019-04-22 13:01:18 +00:00
|
|
|
* COPYRIGHT: Denis ROBERT
|
|
|
|
* Copyright 2019 Bișoc George (fraizeraust99 at gmail dot com)
|
2014-12-05 21:43:00 +00:00
|
|
|
*/
|
|
|
|
|
2014-12-05 22:09:10 +00:00
|
|
|
#ifndef _OSK_H
|
|
|
|
#define _OSK_H
|
2014-12-05 21:43:00 +00:00
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
2014-12-05 22:09:10 +00:00
|
|
|
|
2014-12-05 21:43:00 +00:00
|
|
|
#include <stdio.h>
|
2014-12-05 22:09:10 +00:00
|
|
|
|
|
|
|
#include <windows.h>
|
2019-03-28 15:09:16 +00:00
|
|
|
#include <commctrl.h>
|
2019-03-24 08:40:43 +00:00
|
|
|
#include <debug.h>
|
2019-04-22 13:01:18 +00:00
|
|
|
#include <uxtheme.h>
|
|
|
|
#include <vsstyle.h>
|
2014-12-05 21:43:00 +00:00
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#endif
|
2014-12-05 22:09:10 +00:00
|
|
|
|
2014-12-05 21:43:00 +00:00
|
|
|
/* EOF */
|