preparing DICOM entry
This commit is contained in:
@@ -16,3 +16,10 @@ printf("this is the version ZERO !!!\n");
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
int init_empty_cache(int iw, int ih, int szc, int nbre)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/* ------------------------------------------------------------ */
|
||||
|
||||
@@ -3,3 +3,5 @@
|
||||
*/
|
||||
|
||||
void cachengn_print_version(int k);
|
||||
|
||||
int init_empty_cache(int iw, int ih, int szc, int nbre);
|
||||
|
||||
@@ -6,11 +6,21 @@
|
||||
|
||||
#include "cachengn.h"
|
||||
|
||||
#define IMGW 320
|
||||
#define IMGH 240
|
||||
#define SIZE 20
|
||||
#define NBRI 1000
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int foo;
|
||||
|
||||
fprintf(stderr, "Test of the cache engin - %s %s\n", __DATE__, __TIME__);
|
||||
cachengn_print_version(1);
|
||||
|
||||
foo = init_empty_cache(IMGW, IMGH, SIZE, NBRI);
|
||||
fprintf(stderr, "init_empty_cache --> %d\n", foo);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user