mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
f8e0b4675f
On-Screen Keyboard has a manifest which is used for visual styles. However, the common controls aren't initialized and as a general rule the controls have to be loaded in the application's handle instance.
24 lines
473 B
C
24 lines
473 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 <windows.h>
|
|
#include <commctrl.h>
|
|
#include <debug.h>
|
|
|
|
#include "main.h"
|
|
|
|
#endif
|
|
|
|
/* EOF */
|