mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
34c812365f
In Windows XP, both in On-Screen Keyboard and in Magnify there is a welcome box which is shown upon startup of the application. This feature is already implemented for Magnify in ReactOS which however in On-Screen Keyboard is still unimplemented.
15 lines
494 B
C
15 lines
494 B
C
/*
|
|
* PROJECT: ReactOS On-Screen Keyboard
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Settings header file with function prototypes
|
|
* COPYRIGHT: Copyright 2018 Bișoc George (fraizeraust99 at gmail dot com)
|
|
*/
|
|
|
|
#ifndef SETTINGS_OSK_H
|
|
#define SETTINGS_OSK_H
|
|
|
|
BOOL LoadDataFromRegistry(VOID);
|
|
BOOL SaveDataToRegistry(VOID);
|
|
INT_PTR CALLBACK OSK_WarningProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam);
|
|
|
|
#endif // SETTINGS_OSK_H
|