mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
23 lines
451 B
C
23 lines
451 B
C
/*
|
|
* PROJECT: ReactOS On-Screen Keyboard
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: base/applications/osk/osk.h
|
|
* PURPOSE: On screen keyboard.
|
|
* PROGRAMMERS: Denis ROBERT
|
|
*/
|
|
|
|
#ifndef _OSK_H
|
|
#define _OSK_H
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include "main.h"
|
|
|
|
#endif
|
|
|
|
/* EOF */
|