From: Sebastian B. <sb...@us...> - 2013-12-24 08:57:21
|
Update of /cvsroot/simplemail/simplemail/tests In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28586/tests Modified Files: imap2_unittest.c Log Message: Provide some stubs of functions that are needed to compile the test. Index: imap2_unittest.c =================================================================== RCS file: /cvsroot/simplemail/simplemail/tests/imap2_unittest.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- imap2_unittest.c 24 Dec 2013 08:57:00 -0000 1.7 +++ imap2_unittest.c 24 Dec 2013 08:57:19 -0000 1.8 @@ -30,6 +30,26 @@ /*************************************************************/ +int open_socket_lib(void) +{ + return 1; +} + +void close_socket_lib(void) +{ +} + +void main_set_progress(unsigned int max_work, unsigned int work) +{ +} + +void main_hide_progress(void) +{ +} + + +/*************************************************************/ + void *test_imap_timer_callback(void *data) { thread_abort(thread_get_main()); |