mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
330 B
13 lines
330 B
// GLOS.H
|
|
//
|
|
// This is an OS specific header file
|
|
|
|
#include <windows.h>
|
|
|
|
// disable data conversion warnings
|
|
|
|
#pragma warning(disable : 4305) // MIPS
|
|
#pragma warning(disable : 4244) // MIPS
|
|
#pragma warning(disable : 4136) // X86
|
|
#pragma warning(disable : 4309) // X86
|
|
#pragma warning(disable : 4051) // ALPHA
|