📄 sound.c
字号:
/* $Id: sound.c 22979 2006-07-09 21:10:40Z fireball $
*
* PROJECT: ReactOS System Control Panel
* LICENSE: GPL - See COPYING in the top level directory
* FILE: lib/cpl/system/advanced.c
* PURPOSE: Memory, start-up and profiles settings
* COPYRIGHT: Copyright 2004 Johannes Anderwald (j_anderw@sbox.tugraz.at)
* UPDATE HISTORY:
* 03-04-2004 Created
*/
#include <windows.h>
#include <stdlib.h>
#include "resource.h"
#include "access.h"
/* Property page dialog callback */
INT_PTR CALLBACK
SoundPageProc(
HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
)
{
UNREFERENCED_PARAMETER(lParam);
UNREFERENCED_PARAMETER(hwndDlg);
switch(uMsg)
{
case WM_INITDIALOG:
break;
case WM_COMMAND:
{
switch(LOWORD(wParam))
{
case IDC_SENTRY_BOX:
{
break;
}
case IDC_SENTRY_BUTTON:
{
break;
}
case IDC_SSHOW_BOX:
{
break;
}
default:
break;
}
}
}
return FALSE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -