home *** CD-ROM | disk | FTP | other *** search
-
- /* C O P Y R I G H T N O T I C E : */
- /* Copyright 1986 Eric Jul. May not be used for any */
- /* purpose without written permission from the author. */
-
- /*
-
- */
- #ifndef emCodes
- #define emCodes
-
-
- #define FAC_EmKernel ((unsigned)0x00000016)
- #define VER_EmKernel ((unsigned)0x00000001)
- #define ABV_EmKernel "EMK"
- #define KMSG_EmKernel ((unsigned)0x00160001)
- /*
- * Module specific success code.
- */
- #define EMKS_Success ((unsigned)0x00160001)
- /* "Normal, successful completion." */
- /*
- * Module specific failures.
- */
- #define EMKF_Failure ((unsigned)0x00160002)
- /* "Request failed." */
- /*
- * Message types
- */
- #define EMKM_PingReq ((unsigned)0x00160005)
- /* "Ping request message." */
- #define EMKM_PongReq ((unsigned)0x0016000D)
- /* "Pong reply to a ping message." */
- #define EMKM_LMPingReq ((unsigned)0x00160015)
- /* "LMPing request message." */
- #define EMKM_FLAcceptCode ((unsigned)0x0016001D)
- /* "Transfer Code message." */
- #define EMKM_InvokeReq ((unsigned)0x00160025)
- /* "Remote Invocation Request message." */
- #define EMKM_InvokeReply ((unsigned)0x0016002D)
- /* "Reply to a Remote Invocation Request." */
- #define EMKM_LocationReq ((unsigned)0x00160035)
- /* "Location Protocol message." */
- #define EMKM_ConfirmReply ((unsigned)0x0016003D)
- /* "Confirm of Location Reply message." */
- #define EMKM_Item ((unsigned)0x00160045)
- /* "Multiple Item message." */
- #define EMKM_PingTimedReq ((unsigned)0x0016004D)
- /* "Ping request message, timed." */
- #define EMKM_PongTimedReq ((unsigned)0x00160055)
- /* "Pong request message, timed." */
- #define EMKM_LMPingTimedReq ((unsigned)0x0016005D)
- /* "LM Ping timing request." */
- #define EMKM_LMPongTimedReq ((unsigned)0x00160065)
- /* "LM Pong timing request." */
-
- #endif
-
-