1 /*
2  *  CUnit - A Unit testing framework library for C.
3  *  Copyright (C) 2004  Jerry D. St.Clair
4  *
5  *  This library is free software; you can redistribute it and/or
6  *  modify it under the terms of the GNU Library General Public
7  *  License as published by the Free Software Foundation; either
8  *  version 2 of the License, or (at your option) any later version.
9  *
10  *  This library is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  *  Library General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Library General Public
16  *  License along with this library; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 
20 /*
21  *  >>>  UNDER CONSTRUCTION  <<<
22  *
23  *	Contains function definitions for windows programs.
24  *
25  *	Created By     : Jerry St.Clair on 5-Jul-2004
26  *	Last Modified  : 18-Jul-2004
27  *	Comment        : This file was missing from the 1-1.1 distribtion, new interface
28  *	EMail          : jds2@users.sourceforge.net
29  *
30  */
31 
32 #ifndef CUNIT_WIN_H_SEEN
33 #define CUNIT_WIN_H_SEEN
34 
35 #include "CUnit.h"
36 
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
41 CU_EXPORT extern void CU_win_run_tests(void);
42 
43 #ifdef USE_DEPRECATED_CUNIT_NAMES
44 #define win_run_tests() CU_win_run_tests()
45 #endif  /* USE_DEPRECATED_CUNIT_NAMES */
46 
47 #ifdef __cplusplus
48 }
49 #endif
50 #endif /* CUNIT_WIN_H_SEEN */
51