]> granicus.if.org Git - graphviz/commitdiff
Add build files and extra source files for windows
authorerg <devnull@localhost>
Thu, 20 Jan 2005 19:57:36 +0000 (19:57 +0000)
committererg <devnull@localhost>
Thu, 20 Jan 2005 19:57:36 +0000 (19:57 +0000)
windows/cmd/gvui/Main.bas [new file with mode: 0644]

diff --git a/windows/cmd/gvui/Main.bas b/windows/cmd/gvui/Main.bas
new file mode 100644 (file)
index 0000000..2352d7d
--- /dev/null
@@ -0,0 +1,15 @@
+Attribute VB_Name = "Main"\r
+'\r
+' Constants used here and there\r
+'\r
+Public Const GRAPH As Integer = &H1\r
+Public Const NODE As Integer = &H2\r
+Public Const EDGE As Integer = &H4\r
+Public Const SUBGRAPH As Integer = &H8\r
+Public Const CLUSTER As Integer = &H10\r
+Public Const ANY_ELEMENT As Integer = GRAPH Or NODE Or EDGE Or SUBGRAPH Or CLUSTER\r
+\r
+Public Const DOT As Integer = &H1\r
+Public Const NEATO As Integer = &H2\r
+Public Const TWOPI As Integer = &H4\r
+Public Const ALL_ENGINES As Integer = DOT Or NEATO Or TWOPI\r