diff options
author | Araq <rumpf_a@web.de> | 2013-03-16 20:07:36 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-03-16 20:07:36 +0100 |
commit | 2782e885915e5405f878517358370255aea9488d (patch) | |
tree | 76d3d10339a9b4c8410124db7a74d2df6881d94d /compiler/c2nim/tests/systest.c | |
parent | c445bd140aed6b731efb4b953f0f3768311cdf51 (diff) | |
download | Nim-2782e885915e5405f878517358370255aea9488d.tar.gz |
fixes #323
Diffstat (limited to 'compiler/c2nim/tests/systest.c')
-rwxr-xr-x | compiler/c2nim/tests/systest.c | 14 |
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); |