mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
15 lines
320 B
C
15 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;
|
|
}
|