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

39
cde/lib/tt/slib/ce_err.h Normal file
View File

@@ -0,0 +1,39 @@
/*%% (c) Copyright 1993, 1994 Hewlett-Packard Company */
/*%% (c) Copyright 1993, 1994 International Business Machines Corp. */
/*%% (c) Copyright 1993, 1994 Sun Microsystems, Inc. */
/*%% (c) Copyright 1993, 1994 Novell, Inc. */
/*%% $XConsortium: ce_err.h /main/3 1995/10/23 11:48:51 rswiston $ */
/* @(#)ce_err.h 1.2 @(#)
* See ce.h in this directory for an explanation of why this piece of
* the Classing Engine is in the ToolTalk directory.
*/
/*
* Error messages used by the CE
*/
#ifndef ce_err_h
#define ce_err_h
#define CE_ERR_INTERNAL_ERROR -1
#define CE_ERR_ERROR_READING_DB 1
#define CE_ERR_WRITE_IN_PROGRESS 2
#define CE_ERR_DB_NOT_LOADED 3
#define CE_ERR_WRITE_NOT_STARTED 4
#define CE_ERR_NAMESPACE_EXISTS 5
#define CE_ERR_NAMESPACE_NOT_EMPTY 6
#define CE_ERR_NAMESPACE_DOES_NOT_EXIST 7
#define CE_ERR_NS_ENTRY_EXISTS 8
#define CE_ERR_ENTRY_NOT_ALLOCED 9
#define CE_ERR_ATTRIBUTE_EXISTS 10
#define CE_ERR_NO_MEMORY 11
#define CE_ERR_NO_PERMISSION_TO_WRITE 12
#define CE_ERR_WRONG_ARGUMENTS 13
#define CE_ERR_ERROR_WRITING_DB 14
#define CE_ERR_OPENING_DB 15
#define CE_ERR_DB_LOCKED 16
#define CE_ERR_ERROR_OPENING_FILE 17
#define CE_ERR_WRONG_DATABASE_VERSION 18
#define CE_ERR_UNKNOWN_DATABASE_NAME 19
#define CE_ERR_BAD_DATABASE_FILE 20
#endif ce_err_h