[Mono-bugs] [Bug 34308][Nor] New - Fails to define some enumerations.
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
20 Nov 2002 01:46:51 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=34308
--- shadow/34308 Tue Nov 19 20:46:51 2002
+++ shadow/34308.tmp.30128 Tue Nov 19 20:46:51 2002
@@ -0,0 +1,33 @@
+Bug#: 34308
+Product: Mono/MCS
+Version: unspecified
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: miguel@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Fails to define some enumerations.
+
+Some enumerations can not be handled, try this:
+
+
+ public enum TreeViewHitTestFlags
+ {
+ TVHT_ONITEMICON = 0x0002,
+ TVHT_ONITEMLABEL = 0x0004,
+ TVHT_ONITEM = (TVHT_ONITEMICON | TVHT_ONITEMLABEL |
+TVHT_ONITEMSTATEICON),
+ TVHT_ONITEMSTATEICON = 0x0040,
+ }
+
+class X {
+static void Main () {}
+}