NetDisk/systemservices.h
Stephen Heumann dd228dff2d Add wrappers for GS/OS system service calls, and call SET_DISKSW on mount.
I think there should still be some disk-switched logic elsewhere, based on the somewhat complicated rules for it in the documentation, but at least this provides a notification when a new disk is mounted.
2018-08-16 21:39:23 -05:00

11 lines
156 B
C

#ifndef SYSTEMSERVICES_H
#define SYSTEMSERVICES_H
#include <types.h>
Boolean CacheFindBlk(void);
Boolean CacheAddBlk(void);
void SetDiskSw(void);
#endif