diff options
author | Ash Wolf <ninji@wuffs.org> | 2022-10-12 03:03:57 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2022-10-12 03:03:57 +0100 |
commit | 45e57168fa0d33206731e391fb24759ddf179861 (patch) | |
tree | d09621ca6e201865ce9975fa72426f63ac054fd3 /command_line/CmdLine/Src/OSLib/FileHandles.c | |
parent | 4c9d73d7243c82ca3f55d2d8a388328968303b3f (diff) | |
download | MWCC-45e57168fa0d33206731e391fb24759ddf179861.tar.gz MWCC-45e57168fa0d33206731e391fb24759ddf179861.zip |
lots more reorganisation, done part of OSLib
Diffstat (limited to '')
-rw-r--r-- | command_line/CmdLine/Src/OSLib/FileHandles.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/command_line/CmdLine/Src/OSLib/FileHandles.c b/command_line/CmdLine/Src/OSLib/FileHandles.c index e69de29..4609d77 100644 --- a/command_line/CmdLine/Src/OSLib/FileHandles.c +++ b/command_line/CmdLine/Src/OSLib/FileHandles.c @@ -0,0 +1,29 @@ +#include "oslib.h" + +static int OS_LoadFileHandle(OSFileHandle *hand) { + +} + +static int OS_WriteFileHandle(OSFileHandle *hand) { + +} + +int OS_NewFileHandle(const OSSpec *spec, OSHandle *src, Boolean writeable, OSFileHandle *hand) { + +} + +int OS_LockFileHandle(OSFileHandle *hand, Ptr *ptr, UInt32 *size) { + +} + +int OS_UnlockFileHandle(OSFileHandle *hand) { + +} + +int OS_FreeFileHandle(OSFileHandle *hand) { + +} + +void OS_GetFileHandleSpec(const OSFileHandle *hand, OSSpec *spec) { + +} |