Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
* Msg.h -- Header file for DT messaging library
*
* $XConsortium: Msg.h /main/5 1996/03/01 16:36:15 drk $
*
* (C) Copyright 1993, Hewlett-Packard, all rights reserved.
*/
#ifndef _DT_MSG_H
#define _DT_MSG_H
#include <X11/Intrinsic.h>
#include <Dt/DataTypes.h>
/*
* _DtMessage handle definitions
*/
typedef struct _DtMsgHandle *DtMsgHandle;
/*
* Return values
*/
#define dtmsg_NO_LISTENERS (102)
#define dtmsg_SUCCESS (1)
#define dtmsg_FAIL (-1)
#define dtmsg_NO_SERVICE (-102)
#define dtmsg_WRONG_FORMAT (-103)
#define dtmsg_ANOTHER_PROVIDER (-104)
#define dtmsg_LOST_SERVICE (-105)
#define DtMsgContext Pointer
#endif /* not defined _DT_MSG_H */
/***** END OF FILE ****/