comparison src/jpeg-test.c @ 895:09113bc06d72

add test program for package jpeg
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 21 Apr 2010 13:40:53 +0200
parents
children 35a9e556c82c
comparison
equal deleted inserted replaced
894:0b78f6aabad8 895:09113bc06d72
1 /* This file is part of mingw-cross-env. */
2 /* See doc/index.html for further information. */
3
4 #include <stdio.h>
5 #include <windows.h>
6 #include <jpeglib.h>
7
8 int main(int argc, char* argv[])
9 {
10 boolean test_boolean;
11 INT32 test_int32;
12 struct jpeg_decompress_struct cinfo;
13
14 (void)argc;
15 (void)argv;
16
17 test_boolean = TRUE;
18 test_int32 = 1;
19 jpeg_create_decompress(&cinfo);
20 jpeg_destroy_decompress(&cinfo);
21
22 return 0;
23 }