コードにコンパイラ ディレクティブを追加して、mingw でコンパイルする場合は、このコードを考慮しないでください。
例えば:
#ifdef _MINGW32_ //if this defined then don't compile the code
int x;
code....
#endif
出来ますか?どうやってするか?
コードにコンパイラ ディレクティブを追加して、mingw でコンパイルする場合は、このコードを考慮しないでください。
例えば:
#ifdef _MINGW32_ //if this defined then don't compile the code
int x;
code....
#endif
出来ますか?どうやってするか?