Digitális hangminták
Gaga
sound_file
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
Projekt: Digitális hangminták Készült: Hétfő December 7 2020 23:31:11 Készítette:
1.8.17