mirror of
https://github.com/LIV2/a4091-software.git
synced 2025-12-05 22:12:44 +00:00
12 lines
393 B
C
12 lines
393 B
C
#ifndef MOUNTER_H
|
|
#define MOUNTER_H
|
|
|
|
APTR W_CreateIORequest(struct MsgPort *ioReplyPort, ULONG size, struct ExecBase *SysBase);
|
|
void W_DeleteIORequest(APTR iorequest, struct ExecBase *SysBase);
|
|
struct MsgPort *W_CreateMsgPort(struct ExecBase *SysBase);
|
|
void W_DeleteMsgPort(struct MsgPort *port, struct ExecBase *SysBase);
|
|
|
|
int mount_drives(struct ConfigDev *cd, struct Library *dev);
|
|
|
|
#endif
|