mirror of
https://github.com/antoinevignau/source.git
synced 2025-01-08 13:29:45 +00:00
1 line
1.2 KiB
C
Executable File
1 line
1.2 KiB
C
Executable File
/***********************************************************************\
|
|
|
|
Product Number: SC-08-5.7
|
|
|
|
Version: rev5.7
|
|
|
|
Product Name: Spelling Components - Searchpath
|
|
|
|
Filename: spath.h
|
|
|
|
|
|
This document contains private and confidential information and
|
|
its disclosure does not constitute publication. Some of the
|
|
information herein also may appear in United States and or
|
|
Foreign Patents Pending. All rights are reserved by Proximity
|
|
Technology Inc., except those specifically granted by license.
|
|
|
|
\***********************************************************************/
|
|
|
|
#ifndef SC_SPATH
|
|
#define SC_SPATH
|
|
|
|
#ifndef _PROXLIB
|
|
#include <proxlib.h>
|
|
#endif
|
|
|
|
#ifndef SC_SCPARAM
|
|
#include "scparam.h"
|
|
#endif
|
|
|
|
/* structure controlling access to one Searchpath word list */
|
|
|
|
typedef struct {
|
|
char *sp_access; /* CACHE, CORELEX, LEX, or CLAM pointer */
|
|
char sp_type; /* code for type of above pointer */
|
|
char sp_flags; /* word list capabilities */
|
|
char sp_envcode; /* language code */
|
|
UCHAR sp_idcode; /* Word list identification code */
|
|
} SPENTRY;
|
|
|
|
extern SPENTRY Srchpath[]; /* the array of entries in the Searchpath */
|
|
extern SPENTRY *Srchend; /* points to end of SP list */
|
|
|
|
#endif
|