home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 January
/
Chip_1997-01_cd.bin
/
ms95
/
disk22
/
dir10
/
f015800.re_
/
f015800.re
Wrap
Text File
|
1996-04-02
|
3KB
|
81 lines
/*----------------------------------------------------------------------+
| |
| Copyright (1993-95) Bentley Systems, Inc., All rights reserved. |
| |
| "MicroStation" is a registered trademark and "MDL" and "MicroCSL" |
| are trademarks of Bentley Systems, Inc. |
| |
| Limited permission is hereby granted to reproduce and modify this |
| copyrighted material provided that the resulting code is used only |
| in conjunction with Bentley Systems products under the terms of the |
| license agreement provided therein, and that this notice is retained |
| in its entirety in any such reproduction or modification. |
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| $Logfile: J:/mdl/examples/mdlipc/mdlipc.h_v $
| $Workfile: mdlipc.h $
| $Revision: 1.3 $
| $Date: 30 Jun 1995 09:18:34 $
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| Function - |
| |
| MDL IPC Example application defines and structures |
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| mdlipc.h
| |
+----------------------------------------------------------------------*/
#if !defined (__mdlipcH__)
#define __mdlipcH__
/*----------------------------------------------------------------------+
| |
| |
| |
+----------------------------------------------------------------------*/
#define MDLIPC_RESPONSE 0
#define MDLIPC_BRACKET 1
#define MDLIPC_ECHO 2
#define MDLIPC_PRINT_FUNC 3
/*----------------------------------------------------------------------+
| |
| |
| |
+----------------------------------------------------------------------*/
#define MSGID_Response 1
#define MSGID_NoEchoServer 2
#define MSGID_UnexpectedMsg 3
#define MSGID_UnexpectedType 4
/*----------------------------------------------------------------------+
| |
| |
| |
+----------------------------------------------------------------------*/
#define MESSAGELISTID_MdlIpc 1
/*----------------------------------------------------------------------+
| |
| |
| |
+----------------------------------------------------------------------*/
#if !defined (resource)
typedef struct mdlIpc
{
Inputq_header hdr;
int request;
char requestor [TASK_ID_SIZE];
void *dataP;
} mdlIpc;
#endif
#endif /* if !defined (__mdlipcH__) */