summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-03-15 22:39:57 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-03-15 22:39:57 +0000
commit3a9d945d0701afbffa02e3331271103c6ce93f0a (patch)
tree030a83c68010332b48f9e73f7587271d84cb91af /test
parent1ede363769f972270603bee70bd7dd5fde3db5e7 (diff)
Use the Multithreaded DLL runtime model for all projects - I haven't found
a system yet that this doesn't work on, and you get smaller executables... FLUID source needs Windows headers for GetTempPath and MAX_PATH definitions. Visual C++ complained about the "char **/*argv*/" in CubeMain; added a space so that */ is not seen. Include <stdlib.h> to get argc/argv definitions rather than hardcoding the declarations. This seems to work in all modes. Add can_do_overlay() method for WIN32 (seems to work on my TNT card at least) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1416 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
-rw-r--r--test/CubeMain.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CubeMain.cxx b/test/CubeMain.cxx
index 764a0d7d2..2f423e06a 100644
--- a/test/CubeMain.cxx
+++ b/test/CubeMain.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: CubeMain.cxx,v 1.2.2.4 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: CubeMain.cxx,v 1.2.2.5 2001/03/15 22:39:56 easysw Exp $"
//
// CubeView class definitions for the Fast Light Tool Kit (FLTK).
//
@@ -28,7 +28,7 @@
#include "CubeViewUI.h"
int
-main(int /*argc*/, char **/*argv*/) {
+main(int /*argc*/, char ** /*argv*/) {
CubeViewUI *cvui=new CubeViewUI;
@@ -43,5 +43,5 @@ main(int /*argc*/, char **/*argv*/) {
//
-// End of "$Id: CubeMain.cxx,v 1.2.2.4 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: CubeMain.cxx,v 1.2.2.5 2001/03/15 22:39:56 easysw Exp $".
//