mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
16 lines
320 B
C
16 lines
320 B
C
|
/*
|
||
|
* PROJECT: input.dll
|
||
|
* FILE: dll/cpl/input/advanced_settings_page.c
|
||
|
* PURPOSE: input.dll
|
||
|
* PROGRAMMER: Dmitry Chapyshev (dmitry@reactos.org)
|
||
|
*/
|
||
|
|
||
|
#include "input.h"
|
||
|
|
||
|
|
||
|
INT_PTR CALLBACK
|
||
|
AdvancedSettingsPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||
|
{
|
||
|
return FALSE;
|
||
|
}
|