Digitális hangminták
Gaga
binary_streams.h
Ugrás a fájl dokumentációjához.
1 
7 #ifndef BINARY_STREAMS_H_INCLUDED
8 #define BINARY_STREAMS_H_INCLUDED
9 
10 #ifdef _WIN32
11 #include <io.h>
12 #include <fcntl.h>
14 #define binary_streams() setmode(fileno(stdin), O_BINARY); setmode(fileno(stdout), O_BINARY)
15 #else
16 
17 #define binary_streams() freopen(NULL, "rb", stdin); freopen(NULL, "wb", stdout)
18 #endif
19 
20 #endif