home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <dos/dos.h>
- #include <powerup/gcclib/powerup_protos.h>
-
- extern ULONG DOSBase;
-
- int remove(const char *name)
- {
- struct Caos MyCaos;
-
- MyCaos.d1 = (ULONG)name;
- MyCaos.M68kCacheMode = IF_CACHEFLUSHALL;
- MyCaos.PPCCacheMode = IF_CACHEFLUSHALL;
- MyCaos.caos_Un.Offset = -72;
- MyCaos.a6 = DOSBase;
- return PPCCallOS(&MyCaos);
- }
-
-