home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************/
- /* */
- /* IBM OS/2(tm) Local Area Network (LAN) Server */
- /* Version 3.0 */
- /* (c) Copyright International Business Machines Corporation, 1988, 1992 */
- /* */
- /**************************************************************************/
- /********************************************************************/
-
- /********************************************************************
- * *
- * About this file ... REMUTIL.H *
- * *
- * This file contains information about the NetRemote APIs. *
- * *
- * Function prototypes. *
- * *
- * Data structure templates. *
- * *
- * Definition of special values. *
- * *
- * *
- * NOTE: You must include NETCONS.H before this file, since this *
- * file depends on values defined in NETCONS.H. *
- * *
- ********************************************************************/
-
-
- #ifdef INCL_32
- #pragma pack(1)
- #endif
-
-
- #ifndef NETREMUTIL_INCLUDED
-
- #define NETREMUTIL_INCLUDED
-
-
- /****************************************************************
- * *
- * Function prototypes - REMOTE *
- * *
- ****************************************************************/
-
- extern API_FUNCTION
- NetRemoteCopy ( const unsigned char LSFAR * pszSourcePath,
- const unsigned char LSFAR * pszDestPath,
- const unsigned char LSFAR * pszSourcePasswd,
- const unsigned char LSFAR * pszDestPasswd,
- unsigned short fsOpen,
- unsigned short fsCopy,
- unsigned char LSFAR * pbBuffer,
- unsigned short cbBuffer );
-
- extern API_FUNCTION
- NetRemoteExec ( unsigned char LSFAR * pszReserved1,
- unsigned char LSFAR * pszFailName,
- unsigned LSINT cbFailName,
- unsigned LSINT fAsync,
- const unsigned char LSFAR * pszArgs,
- const unsigned char LSFAR * pszEnvs,
- unsigned char LSFAR * pReturnCodes,
- const unsigned char LSFAR * pszPgmName,
- unsigned char LSFAR * pszReserved2,
- unsigned short fsRemoteExec );
-
- extern API_FUNCTION
- NetRemoteMove ( const unsigned char LSFAR * pszSourcePath,
- const unsigned char LSFAR * pszDestPath,
- const unsigned char LSFAR * pszSourcePasswd,
- const unsigned char LSFAR * pszDestPasswd,
- unsigned short fsOpen,
- unsigned short fsMove,
- unsigned char LSFAR * pbBuffer,
- unsigned short cbBuffer );
-
- extern API_FUNCTION
- NetRemoteTOD ( const unsigned char LSFAR * pszServer,
- unsigned char LSFAR * pbBuffer,
- unsigned short cbBuffer );
-
-
- /****************************************************************
- * *
- * Data structure templates - REMOTE *
- * *
- ****************************************************************/
-
- struct copy_info {
- unsigned short ci_num_copied;
- unsigned char ci_err_buf[1];
- }; /* copy_info */
-
-
- struct move_info {
- unsigned short mi_num_moved;
- unsigned char mi_err_buf[1];
- }; /* move_info */
-
- struct time_of_day_info {
- unsigned long tod_elapsedt; /* time from 1-1-1970 in seconds */
- unsigned long tod_msecs; /* milliseconds */
- unsigned char tod_hours; /* hours */
- unsigned char tod_mins; /* minutes */
- unsigned char tod_secs; /* seconds */
- unsigned char tod_hunds; /* hundredths */
- unsigned short tod_timezone; /* time zone in minutes from GMT */
- unsigned short tod_tinterval; /* timer interval (units = 0.0001 sec) */
- unsigned char tod_day; /* day */
- unsigned char tod_month; /* month */
- unsigned short tod_year; /* year */
- unsigned char tod_weekday; /* day of week */
- }; /* time_of_day_info */
-
-
- #ifdef PURE_32
- /****************************************************************
- * *
- * Function prototypes - REMOTE *
- * For "pure" 32-bit code *
- ****************************************************************/
-
- extern API32_FUNCTION
- Net32RemoteCopy ( const unsigned char * pszSourcePath,
- const unsigned char * pszDestPath,
- const unsigned char * pszSourcePasswd,
- const unsigned char * pszDestPasswd,
- unsigned long fsOpen, /* was short */
- unsigned long fsCopy, /* was short */
- unsigned char * pbBuffer,
- unsigned long ulBuffer ); /* was short */
-
- extern API32_FUNCTION
- Net32RemoteExec ( unsigned char * pszReserved1,
- unsigned char * pszFailName,
- unsigned long cbFailName, /* was unsigned LSINT */
- unsigned long fAsync, /* was unsigned LSINT */
- const unsigned char * pszArgs,
- const unsigned char * pszEnvs,
- unsigned char * pReturnCodes,
- const unsigned char * pszPgmName,
- unsigned char * pszReserved2,
- unsigned long fsRemoteExec ); /* was short */
-
- extern API32_FUNCTION
- Net32RemoteMove ( const unsigned char * pszSourcePath,
- const unsigned char * pszDestPath,
- const unsigned char * pszSourcePasswd,
- const unsigned char * pszDestPasswd,
- unsigned long fsOpen, /* was short */
- unsigned long fsMove, /* was short */
- unsigned char * pbBuffer,
- unsigned long ulBuffer ); /* was short */
-
- extern API32_FUNCTION
- Net32RemoteTOD ( const unsigned char * pszServer,
- unsigned char * pbBuffer,
- unsigned long ulBuffer ); /* was short */
- #endif /* PURE_32 */
-
-
- /****************************************************************
- * *
- * Special values and constants - REMOTE *
- * *
- ****************************************************************/
-
- /*
- * Bit values for the "copyflags" parameter of NetRemoteCopy
- * and the "moveflags" parameter of NetRemoteMove.
- *
- * bit 0: 1 - destination mode must be a file
- * bit 1: 1 - destination mode must be a directory
- *
- * The following bits are defined for NetRemoteCopy ONLY.
- *
- * bit 2: 0 - destination copy mode is binary.
- * 1 - destination copy mode is ASCII.
- * bit 3: 0 - source copy mode is binary.
- * 1 - source copy mode is ASCII.
- * bit 4: 1 - verify all writes.
- */
-
- #define MUST_BE_FILE 0x1
- #define MUST_BE_DIR 0x2
- #define ASCII_DEST 0x4
- #define ASCII_SOURCE 0x8
- #define VERIFY 0x10
-
-
- /*
- * Bit values for the "remexecflags" parameter of NetRemoteExec.
- *
- * bit 0: 0 - use msg mode pipe for std in
- * 1 - use unsigned charmode pipe for std in
- * bit 1: 0 - CWait for process tree before returning
- * ExitCode to Ghost
- * 1 - CWait for exec'ed process before returning
- * ExitCode to Ghost
- * bit 2: 0 - Map SIGINTR and SIGBREAK to SIGKILL when
- * remoting signals
- * 1 - Send signals as received
- */
-
- #define REM_PIPE_MODE 1
- #define REM_PIPE_MODE_MSG 0
- #define REM_PIPE_MODE_CHAR 1
-
- #define REM_WAIT_MODE 2
- #define REM_WAIT_MODE_PROCESS 0
- #define REM_WAIT_MODE_TREE 2
-
- #define REM_SIGL_MODE 4
- #define REM_SIGL_MODE_MAP 0
- #define REM_SIGL_MODE_RAW 4
-
-
- #endif /* NETREMUTIL_INCLUDED */
-
-
- #if defined(INCL_32) || defined(MIXED_32)
- #pragma linkage (NetRemoteCopy, far16 pascal)
- #pragma linkage (NetRemoteExec, far16 pascal)
- #pragma linkage (NetRemoteMove, far16 pascal)
- #pragma linkage (NetRemoteTOD, far16 pascal)
- #pragma pack()
- #endif
-