add WFREAD, WFWRITE

pull/56/head
Chris Conlon 2018-04-09 16:27:10 -06:00
parent 6a22968b87
commit b530d26357
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,8 @@ extern "C" {
#define WFOPEN(f,fn,m) wfopen((f),(fn),(m))
#define WFCLOSE(f) fclose(f)
#define WFREAD(b,s,a,f) fread((b),(s),(a),(f))
#define WFWRITE(b,s,a,f) fwrite((b),(s),(a),(f))
#endif
/* setup string handling */