[Mwinapi-commits] SF.net SVN: mwinapi:[97] trunk/ManagedWinapi
Status: Beta
Brought to you by:
schierlm
From: <sch...@us...> - 2011-01-02 20:33:42
|
Revision: 97 http://mwinapi.svn.sourceforge.net/mwinapi/?rev=97&view=rev Author: schierlm Date: 2011-01-02 20:33:36 +0000 (Sun, 02 Jan 2011) Log Message: ----------- - Remove debug code in ListParser - disable a warning in MixerControl Modified Paths: -------------- trunk/ManagedWinapi/Contents/ListParser.cs trunk/ManagedWinapi/MixerControl.cs Modified: trunk/ManagedWinapi/Contents/ListParser.cs =================================================================== --- trunk/ManagedWinapi/Contents/ListParser.cs 2011-01-01 22:53:58 UTC (rev 96) +++ trunk/ManagedWinapi/Contents/ListParser.cs 2011-01-02 20:33:36 UTC (rev 97) @@ -282,7 +282,6 @@ catch { // fallback to slower accessible object method - if (true) throw; } SystemAccessibleObject o = SystemAccessibleObject.FromWindow(sw, AccessibleObjectID.OBJID_CLIENT); if (o.RoleIndex == 33) Modified: trunk/ManagedWinapi/MixerControl.cs =================================================================== --- trunk/ManagedWinapi/MixerControl.cs 2011-01-01 22:53:58 UTC (rev 96) +++ trunk/ManagedWinapi/MixerControl.cs 2011-01-02 20:33:36 UTC (rev 97) @@ -274,6 +274,7 @@ public int fValue; } +#pragma warning disable 649 internal struct MIXERCONTROLDETAILS_LISTTEXT { public int dwParam1; @@ -282,6 +283,7 @@ [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 64)] public string szName; } +#pragma warning restore 649 private static readonly int MIXER_GETLINECONTROLSF_ALL = 0x0; private static readonly uint MIXERCONTROL_CT_CLASS_MASK = 0xF0000000; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |