mirror of
https://git.wuffs.org/MWCC
synced 2025-07-23 11:55:53 +00:00
30 lines
473 B
C
30 lines
473 B
C
#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) {
|
|
|
|
}
|