|
Revision 8, 0.8 KB
(checked in by emasson, 3 years ago)
|
|
initial import for the community edition
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | #include <ssdef.h> |
|---|
| 6 | #include <iodef.h> |
|---|
| 7 | #include <msgdef.h> |
|---|
| 8 | #include <descrip.h> |
|---|
| 9 | #include <dvidef.h> |
|---|
| 10 | #include <jpidef.h> |
|---|
| 11 | #include <prcdef.h> |
|---|
| 12 | #include <dcdef.h> |
|---|
| 13 | #include <ttdef.h> |
|---|
| 14 | #include <tt2def.h> |
|---|
| 15 | #include <accdef.h> |
|---|
| 16 | #include <prvdef.h> |
|---|
| 17 | |
|---|
| 18 | struct IOSB |
|---|
| 19 | { |
|---|
| 20 | short int status; |
|---|
| 21 | short int len; |
|---|
| 22 | int unused; |
|---|
| 23 | } mbx_read_iosb,iosb; |
|---|
| 24 | |
|---|
| 25 | #define MAXITEMLIST 5 |
|---|
| 26 | |
|---|
| 27 | short int tt_chan; |
|---|
| 28 | short int mbx_chan; |
|---|
| 29 | struct accdef mbx_buf; |
|---|
| 30 | short int mbxunit; |
|---|
| 31 | int pid; |
|---|
| 32 | static $DESCRIPTOR (image, "SYS$SYSTEM:LOGINOUT.EXE"); |
|---|
| 33 | |
|---|
| 34 | static struct items { |
|---|
| 35 | short int buflen; |
|---|
| 36 | short int code; |
|---|
| 37 | int buffer; |
|---|
| 38 | int return_addr; |
|---|
| 39 | } itemlist[MAXITEMLIST]; |
|---|