1 /* BEGIN INCLUDE FILE ws_load.h */
 2 
 3 /* HISTORY COMMENTS:
 4   1) change(86-10-10,Flegel), approve(87-07-13,MCR7580),
 5      audit(87-07-13,Leskiw), install(87-08-07,MR12.1-1072):
 6      Created.
 7                                                    END HISTORY COMMENTS */
 8 
 9 /* FUNCTION
10 
11 Define the necessary information to support the autoload facility.  The
12 capability to be autoloaded MUST be in the search path of the PC
13 */
14 
15 #define AUTO_LIMIT       32        /* Maximum number of capabilities to load */
16 #define AUTO_LENGTH      9         /* Maximum number of characters in load name */
17 #define AUTO_ACTIVE      001       /* Autoload in progress */
18 #define AUTO_COMPLETE    002       /* Autoload complete */
19 #define AUTO_ON          004       /* Specifies that the entry is valid */
20 #define AUTO_PENDING     001       /* General flag indicates pending loads */
21 
22 typedef struct
23 {  char   name[AUTO_LENGTH];       /* Name of capability to autoload */
24    int    flags;                   /* Flags associated with autoload */
25 } AUTO, *AUTO_PTR;
26 
27 /* END INCLUDE FILE ws_load.h */
28 ^Z