mqueue.h
来自「一个开源的网络开发库ACE」· C头文件 代码 · 共 46 行
H
46 行
/* mqueue.h,v 1.7 2000/07/17 21:33:39 luther Exp
* ============================================================================
*
* = 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 */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?