This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/utils/magimail/src/oslib/osdir.h
2017-03-18 23:04:38 +10:00

21 lines
386 B
C

#ifndef OS_OSDIR_H
#define OS_OSDIR_H
#include "shared/types.h"
#include <time.h>
struct osFileEntry
{
struct osFileEntry *Next;
char Name[100];
time_t Date;
uint32_t Size;
};
bool osReadDir(char *dir,struct jbList *filelist,bool (*acceptfunc)(char *filename));
bool osScanDir(char *dir,void (*func)(char *file));
struct osFileEntry *osGetFileEntry(char *file);
#endif