13 lines
211 B
C
13 lines
211 B
C
#ifndef UAE_IO_H
|
|
#define UAE_IO_H
|
|
|
|
#include "uae/types.h"
|
|
#include <stdio.h>
|
|
|
|
#ifdef WINUAE
|
|
#define uae_tfopen _tfopen
|
|
#else
|
|
FILE *uae_tfopen(const TCHAR *path, const TCHAR *mode);
|
|
#endif
|
|
|
|
#endif /* UAE_IO_H */
|