|
|
1.1 ! root 1: /* execvxd.h */ ! 2: ! 3: /* Synchronet FOSSIL driver (VxD) for Windows 9x API */ ! 4: ! 5: /* $Id: execvxd.h,v 1.1.1.1 2000/10/10 11:26:23 rswindell Exp $ */ ! 6: ! 7: /**************************************************************************** ! 8: * @format.tab-size 4 (Plain Text/Source Code File Header) * ! 9: * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) * ! 10: * * ! 11: * Copyright 2000 Rob Swindell - http://www.synchro.net/copyright.html * ! 12: * * ! 13: * This program is free software; you can redistribute it and/or * ! 14: * modify it under the terms of the GNU General Public License * ! 15: * as published by the Free Software Foundation; either version 2 * ! 16: * of the License, or (at your option) any later version. * ! 17: * See the GNU General Public License for more details: gpl.txt or * ! 18: * http://www.fsf.org/copyleft/gpl.html * ! 19: * * ! 20: * Anonymous FTP access to the most recent released source is available at * ! 21: * ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net * ! 22: * * ! 23: * Anonymous CVS access to the development source and modification history * ! 24: * is available at cvs.synchro.net:/cvsroot/sbbs, example: * ! 25: * cvs -d :pserver:[email protected]:/cvsroot/sbbs login * ! 26: * (just hit return, no password is necessary) * ! 27: * cvs -d :pserver:[email protected]:/cvsroot/sbbs checkout src * ! 28: * * ! 29: * For Synchronet coding style and modification guidelines, see * ! 30: * http://www.synchro.net/source.html * ! 31: * * ! 32: * You are encouraged to submit any modifications (preferably in Unix diff * ! 33: * format) via e-mail to [email protected] * ! 34: * * ! 35: * Note: If this box doesn't appear square, then you need to fix your tabs. * ! 36: ****************************************************************************/ ! 37: ! 38: #define SBBSEXEC_VXD "sbbsexec.vxd" ! 39: ! 40: #define SBBSEXEC_IOCTL_START 0x8001 ! 41: #define SBBSEXEC_IOCTL_COMPLETE 0x8002 ! 42: #define SBBSEXEC_IOCTL_READ 0x8003 ! 43: #define SBBSEXEC_IOCTL_WRITE 0x8004 ! 44: #define SBBSEXEC_IOCTL_DISCONNECT 0x8005 ! 45: #define SBBSEXEC_IOCTL_STOP 0x8006 ! 46: ! 47: #define SBBSEXEC_MODE_FOSSIL (0) ! 48: #define SBBSEXEC_MODE_DOS_IN (1<<0) ! 49: #define SBBSEXEC_MODE_DOS_OUT (1<<1) ! 50: ! 51: enum { ! 52: SBBSEXEC_ERROR_INUSE=1 ! 53: ,SBBSEXEC_ERROR_INBUF ! 54: ,SBBSEXEC_ERROR_INDATA ! 55: ,SBBSEXEC_ERROR_IOCTL ! 56: ,SBBSEXEC_ERROR_OUTBUF ! 57: }; ! 58: ! 59: typedef struct { ! 60: DWORD mode; ! 61: HANDLE event; ! 62: } sbbsexec_start_t; ! 63: ! 64: extern HANDLE exec_mutex;
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.