summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/mqueue.h
blob: 17110c5a740f110ff557cc0724a7c091caf13799 (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
35
36
37
38
39
40
41
42
43
44
45
/* $Id$

 * ============================================================================
 *
 * = LIBRARY
 *    pace
 *
 * = FILENAME
 *    pace/win32/mqueue.h
 *
 * = AUTHOR
 *    Luther Baker
 *
 * ============================================================================ */

#ifndef PACE_MQUEUE_H_WIN32
#define PACE_MQUEUE_H_WIN32

#include "pace/signal.h"

#if defined (PACE_HAS_CPLUSPLUS)
extern "C" {
#endif /* PACE_HAS_CPLUSPLUS */

#ifndef PACE_MQD_T
#define PACE_MQD_T
  /* Temporary fix until we emulate these funcs.
     typedef mqd_t pace_mqd_t;
   */
  typedef int pace_mqd_t;
#endif /* PACE_MQD_T */

#ifndef PACE_MQ_ATTR
#define PACE_MQ_ATTR
  /* Temporary fix until we emulate these funcs.
     typedef struct mq_attr pace_mq_attr
   */
  typedef struct mq_attr { int a_; } pace_mq_attr;
#endif /* PACE_MQ_ATTR */

#if defined (PACE_HAS_CPLUSPLUS)
}
#endif /* PACE_HAS_CPLUSPLUS */

#endif /* PACE_MQUEUE_H_WIN32 */