home *** CD-ROM | disk | FTP | other *** search
- #ifndef _import_h
- #define _import_h
-
- #include "flex.h"
- #include "wimp.h"
-
- /* In all the following, name should point to a buffer
- large enough to hold a filename - ie 256 charas
- */
-
- /* Called from DataOpen or DataLoad
- Create a flex block and load file into it
- */
- BOOL import_load(flex_ptr data, int *size, char *name, int *type);
-
- /* Called from DataSave
- Create a flex block and ram fetch file into it
- */
- BOOL import_fetch(flex_ptr data, int *size, char *name, int *type);
-
- /* Called from DataLoad or DataOpen
- Returns filename and type only
- */
- BOOL import_ack(char *name, int *type);
-
- /* Called from DataSave
- Forces the transfer to occure via a scrap file
- Used when RAM transfer is in-appropriate
- */
- void import_scrap(void);
-
- #endif
-