Changeset 344
- Timestamp:
- 10/25/07 01:59:08 (15 months ago)
- Location:
- Apple Wireless Keyboard Helper/trunk
- Files:
-
- 4 modified
-
MasterVolumeControl/MasterVolumeControl.cs (modified) (1 diff)
-
MasterVolumeControl/MasterVolumeControlLibrary.csproj (modified) (1 diff)
-
Misuzilla.Applications.AppleWirelessKeyboardHelper.sln (modified) (2 diffs)
-
Misuzilla.Applications.AppleWirelessKeyboardHelper/Helper.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Apple Wireless Keyboard Helper/trunk/MasterVolumeControl/MasterVolumeControl.cs
r324 r344 47 47 { 48 48 MixerLine masterLine = GetMasterLine(); 49 masterLine.Volume = Math.Min(masterLine.Volume -masterLine.VolumeMax / 10, masterLine.VolumeMax);49 masterLine.Volume = Math.Min(masterLine.Volume + masterLine.VolumeMax / 10, masterLine.VolumeMax); 50 50 } 51 51 -
Apple Wireless Keyboard Helper/trunk/MasterVolumeControl/MasterVolumeControlLibrary.csproj
r324 r344 27 27 <ErrorReport>prompt</ErrorReport> 28 28 <WarningLevel>4</WarningLevel> 29 </PropertyGroup> 30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 31 <DebugSymbols>true</DebugSymbols> 32 <OutputPath>bin\x86\Debug\</OutputPath> 33 <DefineConstants>DEBUG;TRACE</DefineConstants> 34 <DebugType>full</DebugType> 35 <PlatformTarget>x86</PlatformTarget> 36 <CodeAnalysisRuleAssemblies>C:\Program Files (x86)\Microsoft Visual Studio 8\Team Tools\Static Analysis Tools\FxCop\\rules</CodeAnalysisRuleAssemblies> 37 <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression> 38 <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile> 39 <ErrorReport>prompt</ErrorReport> 40 </PropertyGroup> 41 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 42 <OutputPath>bin\x86\Release\</OutputPath> 43 <DefineConstants>TRACE</DefineConstants> 44 <Optimize>true</Optimize> 45 <DebugType>pdbonly</DebugType> 46 <PlatformTarget>x86</PlatformTarget> 47 <CodeAnalysisRuleAssemblies>C:\Program Files (x86)\Microsoft Visual Studio 8\Team Tools\Static Analysis Tools\FxCop\\rules</CodeAnalysisRuleAssemblies> 48 <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression> 49 <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile> 50 <ErrorReport>prompt</ErrorReport> 29 51 </PropertyGroup> 30 52 <ItemGroup> -
Apple Wireless Keyboard Helper/trunk/Misuzilla.Applications.AppleWirelessKeyboardHelper.sln
r342 r344 3 3 # Visual Studio 2005 4 4 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Misuzilla.Applications.AppleWirelessKeyboardHelper", "Misuzilla.Applications.AppleWirelessKeyboardHelper\Misuzilla.Applications.AppleWirelessKeyboardHelper.csproj", "{A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}" 5 ProjectSection(WebsiteProperties) = preProject 6 Debug.AspNetCompiler.Debug = "True" 7 Release.AspNetCompiler.Debug = "False" 8 EndProjectSection 5 9 EndProject 6 10 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MasterVolumeControlLibrary", "MasterVolumeControl\MasterVolumeControlLibrary.csproj", "{8CE671E0-E48E-4562-8C5F-253125D9489B}" 11 ProjectSection(WebsiteProperties) = preProject 12 Debug.AspNetCompiler.Debug = "True" 13 Release.AspNetCompiler.Debug = "False" 14 EndProjectSection 7 15 EndProject 8 16 Global … … 14 22 EndGlobalSection 15 23 GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|Any CPU.ActiveCfg = Debug| Any CPU17 {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|Any CPU.Build.0 = Debug| Any CPU24 {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|Any CPU.ActiveCfg = Debug|x86 25 {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|Any CPU.Build.0 = Debug|x86 18 26 {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|x86.ActiveCfg = Debug|x86 19 27 {A4D4C6B9-6641-4B3D-A023-27C8EC699F9C}.Debug|x86.Build.0 = Debug|x86 -
Apple Wireless Keyboard Helper/trunk/Misuzilla.Applications.AppleWirelessKeyboardHelper/Helper.cs
r342 r344 135 135 //else if ((Int32)wParam == Win32.WM_KEYUP || (Int32)wParam == Win32.WM_SYSKEYUP) // KEYUP 136 136 // OnFnKeyCombinationUp(CurrentKeyState, (Keys)keyEventStruct.wVk, keyEventStruct); 137 return (IntPtr)1;137 return IntPtr.Zero; 138 138 } 139 139 return Win32.CallNextHookEx(_hHook, nCode, wParam, lParam);
