Ignore Release and Debug folders.
Windows SDK does have fcntl.h, snprintf, sys/stat.h, vsnprintf, windows.h and lseek64. Does not have inttypes.h. Modify config.h to reflect this. Windows 8 WDK requires us to specify ddk headers will be used usermode. __PRETTY_FUNCTION__ is defined in MingW but not in VS. Equal to __FUNCSIG__ DDK headers are not longer in a folder (as of Win8 WDK) Windows SDK defines _snprintf, same as snprintf. VS didn't like bool declarations to be inline to function return. Also, it's BOOL in Windows SDK. Specific VS version.h should be used when using VS. DOES COMPILE
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
Rocky Bernstein <rocky@gnu.org>
|
||||
toc reading routine adapted from cuetools
|
||||
Copyright (C) 2003 Svend Sanjay Sorensen <ssorensen@fastmail.fm>
|
||||
Copyright (C) 2013 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@@ -58,7 +59,11 @@
|
||||
#include <cdio/util.h>
|
||||
#include <stdio.h>
|
||||
#include <cdio/utf8.h>
|
||||
#if defined (_MSC_VER) || defined (_XBOX)
|
||||
#include <cdio/msvc/version.h>
|
||||
#else
|
||||
#include <cdio/version.h>
|
||||
#endif
|
||||
|
||||
#include "image.h"
|
||||
#include "cdio_assert.h"
|
||||
|
||||
Reference in New Issue
Block a user