mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 01:40:17 +01:00
108 lines
6.3 KiB
C
108 lines
6.3 KiB
C
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||
|
// % Project : GUSI - Grand Unified Socket Interface
|
||
|
// % File : GUSIFSWrappers.nw - Pseudo-synchronous file calls
|
||
|
// % Author : Matthias Neeracher
|
||
|
// % Language : C++
|
||
|
// %
|
||
|
// % $Log: GUSIFSWrappers.h,v $
|
||
|
// % Revision 1.1 2001/03/11 22:35:14 sgehani%netscape.com
|
||
|
// % First Checked In.
|
||
|
// %
|
||
|
// % Revision 1.7 2001/01/17 08:45:49 neeri
|
||
|
// % Make open calls synchronous
|
||
|
// %
|
||
|
// % Revision 1.6 2000/05/23 06:58:04 neeri
|
||
|
// % Improve formatting
|
||
|
// %
|
||
|
// % Revision 1.5 2000/01/17 01:41:52 neeri
|
||
|
// % Handle special cases in FSMoveRename
|
||
|
// %
|
||
|
// % Revision 1.4 1999/08/26 05:45:01 neeri
|
||
|
// % Fixes for literate edition of source code
|
||
|
// %
|
||
|
// % Revision 1.3 1999/07/19 06:21:02 neeri
|
||
|
// % Add mkdir/rmdir, fix various file manager related bugs
|
||
|
// %
|
||
|
// % Revision 1.2 1999/05/30 02:16:54 neeri
|
||
|
// % Cleaner definition of GUSICatInfo
|
||
|
// %
|
||
|
// % Revision 1.1 1998/10/11 16:45:14 neeri
|
||
|
// % Ready to release 2.0a2
|
||
|
// %
|
||
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||
|
//
|
||
|
// \chapter{Pseudo-synchronous File System Calls}
|
||
|
//
|
||
|
// MacOS offers a wide variety of file system APIs, but the most convenient
|
||
|
// of them--the [[FSpXXX]] calls only works synchronously. The routines defined
|
||
|
// here offer a version of these calls, executed asynchronously and embedded
|
||
|
// into the [[GUSIContext]] switching model.
|
||
|
//
|
||
|
// <GUSIFSWrappers.h>=
|
||
|
#ifndef _GUSIFSWrappers_
|
||
|
#define _GUSIFSWrappers_
|
||
|
|
||
|
#ifdef GUSI_SOURCE
|
||
|
|
||
|
#include <Files.h>
|
||
|
|
||
|
#include <sys/cdefs.h>
|
||
|
|
||
|
#include "GUSIFileSpec.h"
|
||
|
|
||
|
__BEGIN_DECLS
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSOpenDriver(StringPtr name, short * refNum);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSGetFInfo(const FSSpec * spec, FInfo * info);
|
||
|
OSErr GUSIFSSetFInfo(const FSSpec * spec, const FInfo * info);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSOpenDF(const FSSpec * spec, char permission, short * refNum);
|
||
|
OSErr GUSIFSOpenRF(const FSSpec * spec, char permission, short * refNum);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSGetVolParms(short vRefNum, GetVolParmsInfoBuffer * volParms);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSCreate(const FSSpec * spec, OSType creator, OSType type, ScriptCode script);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSDelete(const FSSpec * spec);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSDirCreate(const FSSpec * spec);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSSetFLock(const FSSpec * spec);
|
||
|
OSErr GUSIFSRstFLock(const FSSpec * spec);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSRename(const FSSpec * spec, ConstStr255Param newname);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSCatMove(const FSSpec * spec, const FSSpec * dest);
|
||
|
// <Declarations of C [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSMoveRename(const FSSpec * spec, const FSSpec * dest);
|
||
|
__END_DECLS
|
||
|
#ifdef __cplusplus
|
||
|
// <Declarations of C++ [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSGetCatInfo(GUSIIOPBWrapper<GUSICatInfo> * info);
|
||
|
OSErr GUSIFSSetCatInfo(GUSIIOPBWrapper<GUSICatInfo> * info);
|
||
|
// <Declarations of C++ [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSGetFCBInfo(GUSIIOPBWrapper<FCBPBRec> * fcb);
|
||
|
// <Declarations of C++ [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSGetVInfo(GUSIIOPBWrapper<ParamBlockRec> * pb);
|
||
|
OSErr GUSIFSHGetVInfo(GUSIIOPBWrapper<HParamBlockRec> * pb);
|
||
|
// According to Andreas Grosam, [[PBOpenAsync]] may cause the file not to be closed properly when the
|
||
|
// process quits, so we call that call synchronously.
|
||
|
//
|
||
|
// <Declarations of C++ [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSOpen(GUSIIOPBWrapper<ParamBlockRec> * pb);
|
||
|
// <Declarations of C++ [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSHGetFInfo(GUSIIOPBWrapper<HParamBlockRec> * pb);
|
||
|
OSErr GUSIFSHSetFInfo(GUSIIOPBWrapper<HParamBlockRec> * pb);
|
||
|
// <Declarations of C++ [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSHGetVolParms(GUSIIOPBWrapper<HParamBlockRec> * pb);
|
||
|
// <Declarations of C++ [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSCreate(const FSSpec * spec);
|
||
|
// <Declarations of C++ [[GUSIFSWrappers]]>=
|
||
|
OSErr GUSIFSCatMove(const FSSpec * spec, long dest);
|
||
|
#endif
|
||
|
|
||
|
#endif /* GUSI_SOURCE */
|
||
|
|
||
|
#endif /* GUSIFSWrappers */
|