use standard iptypes.h in modern msvc
This commit is contained in:
parent
0bf9cef2bd
commit
60e239f461
|
@ -67,8 +67,12 @@ static __inline sigar_uint64_t FileTimeToTime(FILETIME *ft)
|
||||||
lpw, -1, (LPSTR)lpa, chars, \
|
lpw, -1, (LPSTR)lpa, chars, \
|
||||||
NULL, NULL))
|
NULL, NULL))
|
||||||
|
|
||||||
|
#ifdef SIGAR_USING_MSC6
|
||||||
/* iptypes.h from vc7, not available in vc6 */
|
/* iptypes.h from vc7, not available in vc6 */
|
||||||
#include "msvc_iptypes.h"
|
#include "msvc_iptypes.h"
|
||||||
|
#else
|
||||||
|
#include "iptypes.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* from wtsapi32.h not in vs6.0 */
|
/* from wtsapi32.h not in vs6.0 */
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
|
Loading…
Reference in New Issue