comparison main.c @ 4:c87e1925f7b2

works, with test app sending in a chain, in mult-threaded mode
author Sean Halle <seanhalle@yahoo.com>
date Sat, 25 Aug 2012 12:22:21 -0700
parents
children 1c9122bfd1c8
comparison
equal deleted inserted replaced
-1:000000000000 0:29e44962b4aa
1 /*
2 * Copyright 2012 OpenSourceResearchInstitute.org
3 * Licensed under GNU General Public License version 2
4 *
5 * author seanhalle@yahoo.com
6 */
7
8 #include <malloc.h>
9 #include <stdlib.h>
10
11 #include "VSs__Test_App/VSs__Test_App.h"
12
13 /*
14 *
15 */
16 int main( int argc, char **argv )
17 {
18
19 DEBUG__printf2(TRUE, "arguments: %s | %s", argv[0], argv[1] );
20
21 VSs__Test_App( );
22
23 exit(0); //cleans up
24 }