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
|
|
|
|
* FILE: base/applications/osk/osk.h
|
|
|
|
* PURPOSE: On screen keyboard.
|
|
|
|
* PROGRAMMERS: Denis ROBERT
|
|
|
|
*/
|
|
|
|
|
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>
|
|
|
|
#include <tchar.h>
|
2014-12-05 22:09:10 +00:00
|
|
|
|
|
|
|
#include <windows.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 */
|