IconSnap/src/sys.h

15 lines
277 B
C

#ifndef SYS_H
#define SYS_H
extern short iconLibraryV44Enabled;
short SysInit(int argc, char **argv);
void SysCleanup(void);
void SysSetVerboseEnabled(short enabled);
// Logging
void Information(const char *fmt, ...);
void Verbose(const char *fmt, ...);
#endif /* SYS_H */