source: trunk/third/cns/src/driver/kerberos.r @ 8789

Revision 8789, 1.2 KB checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8788, which included commits to RCS files with non-trunk default branches.
Line 
1include "LoadDriver.think";
2include "Kerberos.rsrc";
3
4type 'sysz' {                                   /* This is the type definition */
5        longint;                                                /* size requested       (see IM V, page 352) */
6};
7
8resource 'sysz' ( 0 ,"", 0 ) {          /* and this is the declaration */
9        0x00010000                                              /* bytes for sysz resource */
10};
11
12/* Set the resource bits on these... */
13
14type 'DCOD' { hex string; };
15type 'DATA' { hex string; };
16type 'DRVR' { hex string; };
17
18resource 'DRVR' (1, ".kerberos", sysheap, locked, nonpurgeable) {
19        /*
20         * This directive inserts the contents of the DRVR resource
21         */
22        $$resource("DriverShell.think", 'DRVR', 1)
23};
24
25resource 'DCOD' (-16350, "Krb Libs 1", sysheap, locked, nonpurgeable) {
26        /*
27         * This directive inserts the contents of the code resource
28         */
29        $$resource("DriverShell.think", 'DCOD', -16350)
30};
31
32resource 'DCOD' (-16349, "Krb Libs 2", sysheap, locked, nonpurgeable) {
33        /*
34         * This directive inserts the contents of the code resource
35         */
36        $$resource("DriverShell.think", 'DCOD', -16349)
37};
38
39resource 'DATA' (-16352, "Globals", sysheap, locked, nonpurgeable) {
40        /*
41         * This directive inserts the contents of the data resource
42         */
43        $$resource("DriverShell.think", 'DATA', -16352)
44};
45
46
Note: See TracBrowser for help on using the repository browser.