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/osmisc.h

22 lines
398 B
C
Raw Normal View History

2017-03-18 13:04:38 +00:00
#ifndef OS_OSMISC_H
#define OS_OSMISC_H
#include "shared/types.h"
void osSetComment(char *file,char *comment);
bool osExists(char *file);
int osChDirExecute(char *dir,char *cmd);
int osExecute(char *cmd);
bool osRename(char *oldfile,char *newfile);
bool osDelete(char *file);
bool osMkDir(char *dir);
void osSleep(int secs);
uint32_t osError(void);
char *osErrorMsg(uint32_t errnum);
#endif