blob: 6c04ae6b995cd5430242409acacddce3cc91d140 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* $Id$
* ============================================================================
*
* = LIBRARY
* pace
*
* = FILENAME
* pace/win32/sched.h
*
* = AUTHOR
* Luther Baker
*
* ============================================================================ */
#ifndef PACE_SCHED_H_WIN32
#define PACE_SCHED_H_WIN32
/* These definitions are used in other files.
* Separate the declarations from the definitions to avoid circular
* inclusion. ie: some other funcs just need the typedefs and structs. */
#include "pace/win32/schedtypes.h"
#include "pace/time.h"
#if defined (PACE_HAS_CPLUSPLUS)
extern "C" {
#endif /* PACE_HAS_CPLUSPLUS */
#if defined (PACE_HAS_CPLUSPLUS)
}
#endif /* PACE_HAS_CPLUSPLUS */
#endif /* PACE_SCHED_H_WIN32 */
|