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,49 @@
/* $XConsortium: AccessCCDFP.h /main/4 1995/12/18 16:29:51 cde-hp $ */
/************************************<+>*************************************
****************************************************************************
**
** File: AccessCCDFP.h
**
** Project: Run Time Project File Access
**
**
** Description: Private header file for AccessCCDFP.h
**
** (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 Hewlett-Packard Company
**
** (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.
**
**
****************************************************************************
************************************<+>*************************************/
#ifndef _DtAccessCcdfP_h
#define _DtAccessCcdfP_h
/*
* The following structure holds loaded volumes. The fields of this
* structure should not be accessed by any code outside of the volume
* module.
*/
struct _CcdfVolumeInfo {
XrmDatabase volDb; /* A pointer to the Resource Manager */
/* database that was loaded from the */
/* volume file. */
char **topicList; /* A pointer to a string array containing */
/* the locationIDs for all of the topics */
/* in the volume. This array is not created */
/* until the first time it is needed. */
char *keywordFile; /* A pointer to the name of the keyword */
/* file. This name is generated by */
/* adding "k" to the end of volFile. */
/* This filename is not generated until */
/* the first time it is needed. */
};
typedef struct _CcdfVolumeInfo *CcdfVolumePtr;
#endif /* _DtAccessCcdfP_h */