audio.reg

来自「windows ce 下ARM9音频驱动代码」· REG 代码 · 共 89 行

REG
89
字号
;
; Copyright (c) 2004  BSQUARE Corporation.  All rights reserved.
;
; Audio Driver Registry Entries and Specification File
;
; This file contains a specification of an on-board audio controller and 
; lists the registry keys used by the driver.  The registry information may be
; manually copied into the platform.reg after modification to suit the target
; platform.
;
;-------------------------------------------------------------------------------
;
; Registry Entries for Device Manager:
; [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\WaveDev]
;
;   Prefix             	Streams driver 3 letter prefix.
;   Dll                 Dynamic Link Library Name.
;   Index               Device index, used with Prefix, ex. WAV1.
;   Order               Used by DM to prioritize driver loading.
;
;
;-------------------------------------------------------------------------------
; Registry Entries for Control Panel:
; [HKEY_LOCAL_MACHINE\ControlPanel]
;
; This registry setting controls the checkboxes displayed in the Sounds CPL
;  under "enable clicks & taps".
; This is a standard control panel registry entry.
;
;   InputConfig         Sounds CPL "Enable Clicks & Taps" checkboxes
;                        Set bit0 if you have a keyboard
;                        Set bit1 if you have a touch screen
;                        Set bit2 if you have HW buttons
;                         NOTE: For now HW buttons are mutually exclusive with
;                                the keyboard.
;
;
;-------------------------------------------------------------------------------
; Registry Entries for Control Panel:
; [HKEY_CURRENT_USER\ControlPanel\Volume]
;
; These entries override Windows CE default values specified in WCESHELLFE.REG
;
;   Key                 Keyclicks
;                        1       = soft
;                        0x10002 = loud
;   Screen              ScreenTaps
;                        1       = soft
;                        0x10002 = loud
;
;
;-------------------------------------------------------------------------------
;-------------------------------------------------------------------------------
;-------------------------------------------------------------------------------
;-------------------------------------------------------------------------------
;-------------------------------------------------------------------------------
;-------------------------------------------------------------------------------
;-------------------------------------------------------------------------------
;-------------------------------------------------------------------------------
;THE SAMPLE REGISTRY ENTRIES ARE BELOW HERE.
;


[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\WaveDev]
    "Prefix"="WAV"
    "Dll"="wavedev.dll"
    "Index"=dword:1
    "Order"=dword:0


;-------------------------------------------------------
; Control Panel
;-------------------------------------------------------
;
; This registry setting controls the checkboxes dsiplayed in the Sounds CPL
; under "enable clicks & taps". Set bit0 if you have a keyboard, set bit1 if
; you have a touch screen. Set bit2 if you have HW buttons (NOTE: for now
; HW buttons are mutually exclusive with the keyboard)
; For ODO setting it to 3=keybd, and touch screen
;
[HKEY_LOCAL_MACHINE\ControlPanel]
    "InputConfig"=dword:6

; Disable key clicks so that they do not lock audio output.
;
[HKEY_CURRENT_USER\ControlPanel\Volume]
    "Key"=dword:0       ; Keyclicks: 1=soft, 0x10002=loud
    "Screen"=dword:0    ; ScreenTaps: 1=soft, 0x10002=loud

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?