which included commits to RCS files with non-trunk default branches. git-svn-id: svn://10.65.10.50/trunk@5403 c028cbd2-c16b-5b4b-a496-9718f37d4682
59 lines
1.7 KiB
C
Executable File
59 lines
1.7 KiB
C
Executable File
/*
|
|
|
|
Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly,
|
|
Kai Uwe Rommel, Onno van der Linden, Sergio Monesi, Karl Davis and
|
|
Igor Mandrichenko.
|
|
Permission is granted to any individual or institution to use, copy, or
|
|
redistribute this software so long as all of the original files are included,
|
|
that it is not sold for profit, and that this copyright notice is retained.
|
|
|
|
*/
|
|
|
|
/* swiven.h */
|
|
|
|
#ifndef __swiven_h
|
|
#define __swiven_h
|
|
|
|
os_error *SWI_OS_FSControl_26(char *source, char *dest, int actionmask);
|
|
/* copy */
|
|
|
|
os_error *SWI_OS_FSControl_27(char *filename, int actionmask);
|
|
/* wipe */
|
|
|
|
os_error *SWI_OS_GBPB_9(char *dirname, void *buf, int *number,
|
|
int *offset, int size, char *match);
|
|
/* read dir */
|
|
|
|
os_error *SWI_OS_File_1(char *filename, int loadaddr, int execaddr, int attrib);
|
|
/* write file attributes */
|
|
|
|
os_error *SWI_OS_File_5(char *filename, int *objtype, int *loadaddr,
|
|
int *execaddr, int *length, int *attrib);
|
|
/* read file info */
|
|
|
|
os_error *SWI_OS_File_6(char *filename);
|
|
/* delete */
|
|
|
|
os_error *SWI_OS_File_7(char *filename, int loadaddr, int execaddr, int size);
|
|
/* create an empty file */
|
|
|
|
os_error *SWI_OS_CLI(char *cmd);
|
|
/* execute a command */
|
|
|
|
int SWI_OS_ReadC(void);
|
|
/* get a key from the keyboard buffer */
|
|
|
|
os_error *SWI_OS_ReadVarVal(char *var, char *buf, int len, int *bytesused);
|
|
/* reads an OS varibale */
|
|
|
|
os_error *SWI_OS_FSControl_54(char *buffer, int dir, char *fsname, int *size);
|
|
/* reads the path of a specified directory */
|
|
|
|
os_error *SWI_OS_FSControl_37(char *pathname, char *buffer, int *size);
|
|
/* canonicalise path */
|
|
|
|
os_error *SWI_DDEUtils_Prefix(char *dir);
|
|
/* sets the 'prefix' directory */
|
|
|
|
#endif
|