summary refs log tree commit diff stats
path: root/compiler/c2nim/tests/systest.c
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-03-16 20:07:36 +0100
committerAraq <rumpf_a@web.de>2013-03-16 20:07:36 +0100
commit2782e885915e5405f878517358370255aea9488d (patch)
tree76d3d10339a9b4c8410124db7a74d2df6881d94d /compiler/c2nim/tests/systest.c
parentc445bd140aed6b731efb4b953f0f3768311cdf51 (diff)
downloadNim-2782e885915e5405f878517358370255aea9488d.tar.gz
fixes #323
Diffstat (limited to 'compiler/c2nim/tests/systest.c')
-rwxr-xr-xcompiler/c2nim/tests/systest.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/compiler/c2nim/tests/systest.c b/compiler/c2nim/tests/systest.c
index 2a9dd6c28..b73eb5bee 100755
--- a/compiler/c2nim/tests/systest.c
+++ b/compiler/c2nim/tests/systest.c
@@ -9,6 +9,20 @@ extern "C" {
 #  endif
 #endif
 
+enum
+{
+/* 8bit, color or not */
+    CV_LOAD_IMAGE_UNCHANGED  =-1,
+/* 8bit, gray */
+    CV_LOAD_IMAGE_GRAYSCALE  =0,
+/* ?, color */
+    CV_LOAD_IMAGE_COLOR      =1,
+/* any depth, ? */
+    CV_LOAD_IMAGE_ANYDEPTH   =2,
+/* ?, any color */
+    CV_LOAD_IMAGE_ANYCOLOR   =4
+};
+
 typedef void (*callback_t) (int rc);
 typedef const char* (*callback2)(int rc, long L, const char* buffer);