mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 00:14:06 +00:00
23 lines
311 B
C++
23 lines
311 B
C++
|
#ifndef UFILE_HH_INCLUDED
|
||
|
#define UFILE_HH_INCLUDED
|
||
|
|
||
|
#ifdef __WIN32
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
FILE *gd_fopen( const char *filename, const char *mode );
|
||
|
int gd_open( const char *filename);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* end extern "C" */
|
||
|
#endif
|
||
|
|
||
|
#else
|
||
|
#define gd_fopen fopen
|
||
|
#endif
|
||
|
|
||
|
#endif // UFILE_HH
|