FCB 447 filesystem.c struct FCB *CreateFile(unsigned char *name, unsigned short pid) FCB 473 filesystem.c struct FCB *fHandle = (struct FCB *) AllocKMem(sizeof(struct FCB)); FCB 494 filesystem.c struct FCB *OpenFile(unsigned char *name, unsigned short pid) FCB 496 filesystem.c struct FCB *fHandle = AllocKMem(sizeof(struct FCB)); FCB 552 filesystem.c void CloseFile(struct FCB *fHandle) FCB 640 filesystem.c long ReadFile(struct FCB *fHandle, char *buffer, long noBytes) FCB 685 filesystem.c long WriteFile(struct FCB *fHandle, char *buffer, long noBytes) FCB 839 filesystem.c int Seek(struct FCB *fHandle, int offset, int whence) FCB 910 filesystem.c struct FCB *fcb; FCB 926 filesystem.c struct FCB *fcb = CreateFile((char *) FSMsg->quad, FSMsg->pid); FCB 952 filesystem.c CloseFile((struct FCB *) FSMsg->quad); FCB 959 filesystem.c result = ReadFile((struct FCB *) FSMsg->quad, (char *) FSMsg->quad2, FCB 967 filesystem.c result = WriteFile((struct FCB *) FSMsg->quad, FCB 998 filesystem.c fcb = (struct FCB *) FSMsg->quad; FCB 1015 filesystem.c result = Seek((struct FCB *) FSMsg->quad, FSMsg->quad2, FCB 13 include/kernel.h long ReadFromFile(struct FCB *fHandle, char *buffer, long noBytes); FCB 52 include/kstructs.h struct FCB *fcbList; FCB 97 include/kstructs.h struct FCB *nextFCB; FCB 11 kernlib.c long ReadFromFile(struct FCB *fHandle, char *buffer, long noBytes) FCB 100 kernlib.c struct FCB *fcb = 0; FCB 108 kernlib.c fcb = (struct FCB *) msg->quad; FCB 113 kernlib.c struct FCB *temp = currentTask->fcbList; FCB 133 kernlib.c struct FCB *temp = currentTask->fcbList; FCB 134 kernlib.c struct FCB *temp2; FCB 164 kernlib.c struct FCB *temp = currentTask->fcbList; FCB 193 kernlib.c struct FCB *temp = currentTask->fcbList; FCB 224 kernlib.c struct FCB *temp = currentTask->fcbList; FCB 277 kernlib.c struct FCB *temp = currentTask->fcbList; FCB 334 kernlib.c struct FCB *fcb = (struct FCB *) retval; FCB 337 kernlib.c struct FCB *temp = currentTask->fcbList; FCB 415 kernlib.c struct FCB *temp = currentTask->fcbList; FCB 76 newtask.c struct FCB *fcbin = (struct FCB *) AllocKMem(sizeof(struct FCB)); FCB 82 newtask.c struct FCB *fcbout = (struct FCB *) AllocKMem(sizeof(struct FCB)); FCB 89 newtask.c struct FCB *fcberr = (struct FCB *) AllocKMem(sizeof(struct FCB)); FCB 115 newtask.c struct FCB *fHandle; FCB 138 newtask.c fHandle = (struct FCB *) FSMsg->quad; FCB 284 newtask.c struct FCB *temp;