summaryrefslogtreecommitdiff
path: root/command_line/CmdLine/Src/OSLib/MacSpecs.c
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2022-10-12 03:03:57 +0100
committerAsh Wolf <ninji@wuffs.org>2022-10-12 03:03:57 +0100
commit45e57168fa0d33206731e391fb24759ddf179861 (patch)
treed09621ca6e201865ce9975fa72426f63ac054fd3 /command_line/CmdLine/Src/OSLib/MacSpecs.c
parent4c9d73d7243c82ca3f55d2d8a388328968303b3f (diff)
downloadMWCC-45e57168fa0d33206731e391fb24759ddf179861.tar.gz
MWCC-45e57168fa0d33206731e391fb24759ddf179861.zip
lots more reorganisation, done part of OSLib
Diffstat (limited to '')
-rw-r--r--command_line/CmdLine/Src/OSLib/MacSpecs.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/command_line/CmdLine/Src/OSLib/MacSpecs.c b/command_line/CmdLine/Src/OSLib/MacSpecs.c
index e69de29..8648324 100644
--- a/command_line/CmdLine/Src/OSLib/MacSpecs.c
+++ b/command_line/CmdLine/Src/OSLib/MacSpecs.c
@@ -0,0 +1,25 @@
+#include "oslib.h"
+
+int OS_OSPathSpec_To_VolDir(const OSPathSpec *spec, SInt16 *vRefNum, SInt32 *dirID) {
+
+}
+
+int OS_OSSpec_To_FSSpec(const OSSpec *spec, FSSpec *fss) {
+
+}
+
+int OS_VolDir_To_OSNameSpec(SInt16 vRefNum, SInt32 dirID, OSNameSpec *spec, SInt32 *parID) {
+
+}
+
+int OS_VolDir_To_OSPathSpec(SInt16 vRefNum, SInt32 dirID, OSPathSpec *spec) {
+
+}
+
+int OS_FSSpec_To_OSSpec(const FSSpec *fss, OSSpec *spec) {
+
+}
+
+int OS_GetRsrcOSSpec(const OSSpec *spec, OSSpec *rspec, Boolean create) {
+
+}