use _WIN32 instead of WIN32

This commit is contained in:
Shinya Kitaoka 2016-04-15 14:11:23 +09:00
parent e78c895e35
commit 9f5a1bd760
234 changed files with 525 additions and 525 deletions

View file

@ -10,7 +10,7 @@
typedef float KEYER_FLOAT; typedef float KEYER_FLOAT;
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
#define ISNAN _isnan #define ISNAN _isnan
#else #else
extern "C" int isnan(double); extern "C" int isnan(double);

View file

@ -69,7 +69,7 @@ public:
TFilePath getSystemVarPath(string varName) TFilePath getSystemVarPath(string varName)
{ {
#ifdef WIN32 #ifdef _WIN32
return m_registryRoot + varName; return m_registryRoot + varName;
#else #else
QString settingsPath = QString::fromStdString(getApplicationName()) + QString("_") + QString settingsPath = QString::fromStdString(getApplicationName()) + QString("_") +
@ -90,7 +90,7 @@ public:
string getSystemVarValue(string varName) string getSystemVarValue(string varName)
{ {
#ifdef WIN32 #ifdef _WIN32
return TSystem::getSystemValue(getSystemVarPath(varName)).toStdString(); return TSystem::getSystemValue(getSystemVarPath(varName)).toStdString();
#else #else
TFilePath systemVarPath = getSystemVarPath(varName); TFilePath systemVarPath = getSystemVarPath(varName);
@ -146,7 +146,7 @@ public:
m_applicationFullName = m_applicationName + " " + m_applicationVersion; m_applicationFullName = m_applicationName + " " + m_applicationVersion;
m_moduleName = m_applicationName; m_moduleName = m_applicationName;
m_rootVarName = toUpper(m_applicationName) + "ROOT"; m_rootVarName = toUpper(m_applicationName) + "ROOT";
#ifdef WIN32 #ifdef _WIN32
m_registryRoot = TFilePath("SOFTWARE\\OpenToonz\\") + m_applicationName + m_applicationVersion; m_registryRoot = TFilePath("SOFTWARE\\OpenToonz\\") + m_applicationName + m_applicationVersion;
#endif #endif
m_systemVarPrefix = m_applicationName; m_systemVarPrefix = m_applicationName;

View file

@ -3,7 +3,7 @@
#include "ttimer.h" #include "ttimer.h"
#include "texception.h" #include "texception.h"
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>

View file

@ -41,7 +41,7 @@
#include <deque> #include <deque>
#include <numeric> #include <numeric>
#include <sstream> #include <sstream>
#ifdef WIN32 #ifdef _WIN32
#include <crtdbg.h> #include <crtdbg.h>
#endif #endif
@ -121,7 +121,7 @@ public:
bool m_modified; bool m_modified;
}; };
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<CacheItem>; template class DVAPI TSmartPointerT<CacheItem>;
#endif #endif
typedef TSmartPointerT<CacheItem> CacheItemP; typedef TSmartPointerT<CacheItem> CacheItemP;
@ -368,7 +368,7 @@ public:
TImageP m_image; TImageP m_image;
}; };
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<UncompressedOnMemoryCacheItem>; template class DVAPI TSmartPointerT<UncompressedOnMemoryCacheItem>;
template class DVAPI TDerivedSmartPointerT<UncompressedOnMemoryCacheItem, CacheItem>; template class DVAPI TDerivedSmartPointerT<UncompressedOnMemoryCacheItem, CacheItem>;
#endif #endif
@ -417,7 +417,7 @@ public:
TRasterP m_compressedRas; TRasterP m_compressedRas;
}; };
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<CompressedOnMemoryCacheItem>; template class DVAPI TSmartPointerT<CompressedOnMemoryCacheItem>;
template class DVAPI TDerivedSmartPointerT<CompressedOnMemoryCacheItem, CacheItem>; template class DVAPI TDerivedSmartPointerT<CompressedOnMemoryCacheItem, CacheItem>;
#endif #endif
@ -518,7 +518,7 @@ public:
TFilePath m_fp; TFilePath m_fp;
}; };
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<CompressedOnDiskCacheItem>; template class DVAPI TSmartPointerT<CompressedOnDiskCacheItem>;
template class DVAPI TDerivedSmartPointerT<CompressedOnDiskCacheItem, CacheItem>; template class DVAPI TDerivedSmartPointerT<CompressedOnDiskCacheItem, CacheItem>;
#endif #endif
@ -587,7 +587,7 @@ public:
TFilePath m_fp; TFilePath m_fp;
}; };
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<UncompressedOnDiskCacheItem>; template class DVAPI TSmartPointerT<UncompressedOnDiskCacheItem>;
template class DVAPI TDerivedSmartPointerT<UncompressedOnDiskCacheItem, CacheItem>; template class DVAPI TDerivedSmartPointerT<UncompressedOnDiskCacheItem, CacheItem>;
#endif #endif
@ -854,7 +854,7 @@ void TImageCache::Imp::doCompress()
} }
string id = it->first; string id = it->first;
#ifdef WIN32 #ifdef _WIN32
assert(itu->first == it->second->m_historyCount); assert(itu->first == it->second->m_historyCount);
itu = m_itemHistory.erase(itu); itu = m_itemHistory.erase(itu);
m_itemsByImagePointer.erase(getPointer(item->getImage())); m_itemsByImagePointer.erase(getPointer(item->getImage()));
@ -939,7 +939,7 @@ void TImageCache::Imp::doCompress(string id)
return; // id not found: return return; // id not found: return
// delete itu from m_itemHistory // delete itu from m_itemHistory
#ifdef WIN32 #ifdef _WIN32
assert(itu->first == it->second->m_historyCount); assert(itu->first == it->second->m_historyCount);
itu = m_itemHistory.erase(itu); itu = m_itemHistory.erase(itu);
m_itemsByImagePointer.erase(getPointer(item->getImage())); m_itemsByImagePointer.erase(getPointer(item->getImage()));
@ -1044,7 +1044,7 @@ UCHAR *TImageCache::Imp::compressAndMalloc(TUINT32 size)
m_compressedItems[it->first] = newItem; m_compressedItems[it->first] = newItem;
} }
#ifdef WIN32 #ifdef _WIN32
assert(itu->first == it->second->m_historyCount); assert(itu->first == it->second->m_historyCount);
itu = m_itemHistory.erase(itu); itu = m_itemHistory.erase(itu);
m_itemsByImagePointer.erase(getPointer(item->getImage())); m_itemsByImagePointer.erase(getPointer(item->getImage()));

View file

@ -6,7 +6,7 @@
#include <QStringList> #include <QStringList>
#include <QProcess> #include <QProcess>
#include <QTextStream> #include <QTextStream>
#ifdef WIN32 #ifdef _WIN32
#include <Windows.h> #include <Windows.h>
#endif #endif
#include <map> #include <map>

View file

@ -17,7 +17,7 @@
#include <time.h> #include <time.h>
#ifndef STW_TICKS_PER_SECOND #ifndef STW_TICKS_PER_SECOND
#ifndef WIN32 #ifndef _WIN32
extern "C" long sysconf(int); extern "C" long sysconf(int);
#define STW_TICKS_PER_SECOND sysconf(_SC_CLK_TCK) #define STW_TICKS_PER_SECOND sysconf(_SC_CLK_TCK)
#else #else
@ -36,7 +36,7 @@ enum TimerType { TTUUnknown,
TTUTickCount }; TTUTickCount };
static void determineTimer(); static void determineTimer();
#ifdef WIN32 #ifdef _WIN32
static TimerType timerToUse = TTUUnknown; static TimerType timerToUse = TTUUnknown;
@ -150,7 +150,7 @@ static void checkTime(START start, START_USER startUser, START_SYSTEM startSyste
{ {
assert(timerToUse == TTUTickCount); assert(timerToUse == TTUTickCount);
#ifdef WIN32 #ifdef _WIN32
DWORD tm_stop; DWORD tm_stop;
FILETIME creationTime, exitTime, stopSystem, stopUser; FILETIME creationTime, exitTime, stopSystem, stopUser;
@ -166,7 +166,7 @@ static void checkTime(START start, START_USER startUser, START_SYSTEM startSyste
tmUser += FileTimeToInt64(&stopUser) - FileTimeToInt64(&startUser); //user elapsed time tmUser += FileTimeToInt64(&stopUser) - FileTimeToInt64(&startUser); //user elapsed time
tmSystem += FileTimeToInt64(&stopSystem) - FileTimeToInt64(&startSystem); //system elapsed time tmSystem += FileTimeToInt64(&stopSystem) - FileTimeToInt64(&startSystem); //system elapsed time
#else //WIN32 #else // _WIN32
struct tms clk; struct tms clk;
clock_t tm_stop; clock_t tm_stop;
@ -176,12 +176,12 @@ static void checkTime(START start, START_USER startUser, START_SYSTEM startSyste
tmUser += clk.tms_utime - startUser; tmUser += clk.tms_utime - startUser;
tmSystem += clk.tms_stime - startSystem; tmSystem += clk.tms_stime - startSystem;
#endif //WIN32 #endif // _WIN32
} }
//----------------------------------------------------------- //-----------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
// //
// come checkTime, ma usa i timer ad alta risoluzione // come checkTime, ma usa i timer ad alta risoluzione
@ -255,7 +255,7 @@ void hrCheckTime(LARGE_INTEGER start, START_USER startUser, START_SYSTEM startSy
} //namespace } //namespace
#endif //WIN32 #endif // _WIN32
//----------------------------------------------------------- //-----------------------------------------------------------
@ -264,7 +264,7 @@ void TStopWatch::stop()
if (!m_isRunning) if (!m_isRunning)
return; return;
m_isRunning = false; m_isRunning = false;
#ifdef WIN32 #ifdef _WIN32
if (timerToUse == TTUTickCount) if (timerToUse == TTUTickCount)
checkTime(m_start, m_startUser, m_startSystem, m_tm, m_tmUser, m_tmSystem); checkTime(m_start, m_startUser, m_startSystem, m_tm, m_tmUser, m_tmSystem);
else else
@ -283,7 +283,7 @@ void TStopWatch::getElapsedTime(TM_TOTAL &tm, TM_USER &user, TM_SYSTEM &system)
TM_USER cur_tmUser = 0; TM_USER cur_tmUser = 0;
TM_SYSTEM cur_tmSystem = 0; TM_SYSTEM cur_tmSystem = 0;
#ifdef WIN32 #ifdef _WIN32
if (timerToUse == TTUTickCount) if (timerToUse == TTUTickCount)
checkTime(m_start, m_startUser, m_startSystem, cur_tm, cur_tmUser, cur_tmSystem); checkTime(m_start, m_startUser, m_startSystem, cur_tm, cur_tmUser, cur_tmSystem);
else else
@ -390,7 +390,7 @@ void TStopWatch::printGlobals()
} }
//----------------------------------------------------------- //-----------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
void dummyFunction() void dummyFunction()
{ {

View file

@ -8,7 +8,7 @@
#include <QString> #include <QString>
#endif #endif
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#include "windows.h" #include "windows.h"
#endif #endif
@ -206,7 +206,7 @@ wstring toWideString(double v, int p)
string toUpper(string a) string toUpper(string a)
{ {
#ifdef WIN32 #ifdef _WIN32
return _strupr(const_cast<char *>(a.c_str())); return _strupr(const_cast<char *>(a.c_str()));
#else #else
string ret = a; string ret = a;
@ -218,7 +218,7 @@ string toUpper(string a)
string toLower(string a) string toLower(string a)
{ {
#ifdef WIN32 #ifdef _WIN32
return _strlwr(const_cast<char *>(a.c_str())); return _strlwr(const_cast<char *>(a.c_str()));
#else #else
string ret = a; string ret = a;
@ -230,7 +230,7 @@ string toLower(string a)
wstring toUpper(wstring a) wstring toUpper(wstring a)
{ {
#ifdef WIN32 #ifdef _WIN32
return _wcsupr(const_cast<wchar_t *>(a.c_str())); return _wcsupr(const_cast<wchar_t *>(a.c_str()));
#else #else
wstring ret; wstring ret;
@ -244,7 +244,7 @@ wstring toUpper(wstring a)
wstring toLower(wstring a) wstring toLower(wstring a)
{ {
#ifdef WIN32 #ifdef _WIN32
return _wcslwr(const_cast<wchar_t *>(a.c_str())); return _wcslwr(const_cast<wchar_t *>(a.c_str()));
#else #else
wstring ret; wstring ret;

View file

@ -369,7 +369,7 @@ public:
void quitWaitingLoops(); void quitWaitingLoops();
}; };
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TRendererImp>; template class DVAPI TSmartPointerT<TRendererImp>;
#endif #endif

View file

@ -11,7 +11,7 @@
void parseIndexes(string indexes, vector<string> &items) void parseIndexes(string indexes, vector<string> &items)
{ {
#ifdef WIN32 #ifdef _WIN32
char seps[] = " ,;"; char seps[] = " ,;";
char *token; char *token;
if (indexes == "all" || indexes == "All" || indexes == "ALL") if (indexes == "all" || indexes == "All" || indexes == "ALL")
@ -39,7 +39,7 @@ void parseIndexes(string indexes, vector<string> &items)
void insertIndexes(vector<string> items, PaletteFilterFxRenderData *t) void insertIndexes(vector<string> items, PaletteFilterFxRenderData *t)
{ {
#ifdef WIN32 #ifdef _WIN32
for (int i = 0; i < (int)items.size(); i++) { for (int i = 0; i < (int)items.size(); i++) {
char *starttoken, *endtoken; char *starttoken, *endtoken;
char subseps[] = "-"; char subseps[] = "-";

View file

@ -9,7 +9,7 @@
#include "tcurves.h" #include "tcurves.h"
#ifndef __sgi #ifndef __sgi
#ifdef WIN32 #ifdef _WIN32
#include <GL/glut.h> #include <GL/glut.h>
#elif defined(LINUX) #elif defined(LINUX)
#include <GL/glut.h> #include <GL/glut.h>
@ -669,7 +669,7 @@ void tglBuildMipmaps(std::vector<TRaster32P> &rasters,
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
//Forse si potrebbe togliere l'ifdef ed usare QT //Forse si potrebbe togliere l'ifdef ed usare QT
#if defined(WIN32) #if defined(_WIN32)
TGlContext tglGetCurrentContext() TGlContext tglGetCurrentContext()
{ {

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#endif #endif

View file

@ -7,7 +7,7 @@
extern "C" { extern "C" {
#endif #endif
/* /*
#if defined(WIN32) #if defined(_WIN32)
typedef struct {unsigned char b,g,r,m;} LPIXEL; typedef struct {unsigned char b,g,r,m;} LPIXEL;
#elif defined(__sgi) #elif defined(__sgi)
typedef struct { unsigned char m,b,g,r; } LPIXEL; typedef struct { unsigned char m,b,g,r; } LPIXEL;

View file

@ -2,7 +2,7 @@
#include "tfile_io.h" #include "tfile_io.h"
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#include <assert.h> #include <assert.h>

View file

@ -13,8 +13,8 @@
// 32-bit version // 32-bit version
//******************************************************************************* //*******************************************************************************
#ifdef WIN32 #ifdef _WIN32
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#endif #endif
@ -299,7 +299,7 @@ static Boolean QTCmpr_FilterProc
void openMovSettingsPopup(TPropertyGroup *props, bool macBringToFront) void openMovSettingsPopup(TPropertyGroup *props, bool macBringToFront)
{ {
#ifdef WIN32 #ifdef _WIN32
if (InitializeQTML(0) != noErr) if (InitializeQTML(0) != noErr)
return; return;
#endif #endif

View file

@ -13,7 +13,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4786) #pragma warning(disable : 4786)
#include <io.h> #include <io.h>
#endif #endif
@ -205,7 +205,7 @@ void Tiio::defineWriterProperties(const char *ext, TPropertyGroup *prop)
} }
/* /*
#ifdef WIN32 #ifdef _WIN32
int Tiio::openForReading(char *fn) int Tiio::openForReading(char *fn)
{ {
int fd = _open(fn, _O_BINARY|_O_RDONLY); int fd = _open(fn, _O_BINARY|_O_RDONLY);

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#endif #endif

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#endif #endif
//#include "texception.h" //#include "texception.h"

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#endif #endif

View file

@ -16,7 +16,7 @@
#include <boost/range.hpp> #include <boost/range.hpp>
// OS-specific includes // OS-specific includes
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#include <io.h> #include <io.h>
#endif #endif

View file

@ -13,7 +13,7 @@
#include <QTimer> #include <QTimer>
//System-specific includes //System-specific includes
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#elif MACOSX #elif MACOSX
#include <sys/sysctl.h> #include <sys/sysctl.h>
@ -270,7 +270,7 @@ QString tipc::applicationSpecificServerName(QString srvName)
bool tipc::startBackgroundProcess(QString cmdline) bool tipc::startBackgroundProcess(QString cmdline)
{ {
#ifdef WIN32 #ifdef _WIN32
QProcess *proc = new QProcess; QProcess *proc = new QProcess;
proc->start(cmdline); proc->start(cmdline);
if (proc->state() == QProcess::NotRunning) { if (proc->state() == QProcess::NotRunning) {
@ -317,7 +317,7 @@ bool tipc::startSlaveServer(QString srvName, QString cmdline)
//Wait up to msecs until the socket is connecting. Wait a small amount of time //Wait up to msecs until the socket is connecting. Wait a small amount of time
//until the server is up and listening to connection (there is no other way to tell). //until the server is up and listening to connection (there is no other way to tell).
while (dummySock->state() == QLocalSocket::UnconnectedState) { while (dummySock->state() == QLocalSocket::UnconnectedState) {
#ifdef WIN32 #ifdef _WIN32
Sleep(10); Sleep(10);
#else #else
usleep(10 << 10); //10.24 msecs usleep(10 << 10); //10.24 msecs

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#ifndef UNICODE #ifndef UNICODE
#define UNICODE #define UNICODE
#endif #endif
@ -35,7 +35,7 @@ TRaster::TRaster(int lx, int ly, int pixelSize)
//m_buffer = new UCHAR[lx*ly*pixelSize]; //m_buffer = new UCHAR[lx*ly*pixelSize];
if (!m_buffer) { if (!m_buffer) {
#ifdef WIN32 #ifdef _WIN32
static bool firstTime = true; static bool firstTime = true;
if (firstTime) { if (firstTime) {
firstTime = false; firstTime = false;
@ -57,7 +57,7 @@ TRaster::TRaster(int lx, int ly, int pixelSize)
m_buffer = BigMemoryManager.getMemoryChunk(lx*ly*pixelSize, this); m_buffer = BigMemoryManager.getMemoryChunk(lx*ly*pixelSize, this);
//m_buffer = new UCHAR[lx*ly*pixelSize]; //m_buffer = new UCHAR[lx*ly*pixelSize];
m_totalMemory += ((lx*ly*pixelSize)>>10); m_totalMemory += ((lx*ly*pixelSize)>>10);
#ifdef WIN32 #ifdef _WIN32
MessageBox( NULL, "Run out of contiguos phisical memory: please save all and restart toonz!", "Warning", MB_OK); MessageBox( NULL, "Run out of contiguos phisical memory: please save all and restart toonz!", "Warning", MB_OK);
#endif #endif
}*/ }*/

View file

@ -52,7 +52,7 @@ public:
//--------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DV_EXPORT_API TSmartPointerT<RunsMap>; template class DV_EXPORT_API TSmartPointerT<RunsMap>;
#endif #endif

View file

@ -3,7 +3,7 @@
#include "traster.h" #include "traster.h"
#include "trop.h" #include "trop.h"
#include "tpixelgr.h" #include "tpixelgr.h"
#ifdef WIN32 #ifdef _WIN32
#include <emmintrin.h> #include <emmintrin.h>
#include <malloc.h> #include <malloc.h>
#endif #endif
@ -11,7 +11,7 @@
namespace namespace
{ {
#ifdef WIN32 #ifdef _WIN32
template <class T> template <class T>
struct BlurPixel { struct BlurPixel {
T b; T b;
@ -231,7 +231,7 @@ inline void blur_code(
//------------------------------------------------------------------- //-------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
//------------------------------------------------------------------- //-------------------------------------------------------------------
template <class T, class P> template <class T, class P>
@ -484,7 +484,7 @@ inline void blur_code_SSE2(
} }
} }
#endif // WIN32 #endif // _WIN32
//------------------------------------------------------------------- //-------------------------------------------------------------------
@ -574,7 +574,7 @@ template <class T, class Q, class P>
void do_filtering_chan(BlurPixel<P> *row1, T *row2, int length, void do_filtering_chan(BlurPixel<P> *row1, T *row2, int length,
float coeff, float coeffq, int brad, float diff, bool useSSE) float coeff, float coeffq, int brad, float diff, bool useSSE)
{ {
#ifdef WIN32 #ifdef _WIN32
if (useSSE && T::maxChannelValue == 255) if (useSSE && T::maxChannelValue == 255)
blur_code_SSE2<T, P>(row1, row2, length, coeff, coeffq, brad, diff, 0.5); blur_code_SSE2<T, P>(row1, row2, length, coeff, coeffq, brad, diff, 0.5);
else else
@ -769,7 +769,7 @@ void do_filtering_floatRgb(T *row1, BlurPixel<P> *row2, int length,
BLUR_CODE(0, unsigned char) BLUR_CODE(0, unsigned char)
*/ */
#ifdef WIN32 #ifdef _WIN32
if (useSSE) if (useSSE)
blur_code_SSE2<T, P>(row1, row2, length, coeff, coeffq, brad, diff, 0); blur_code_SSE2<T, P>(row1, row2, length, coeff, coeffq, brad, diff, 0);
else else
@ -805,7 +805,7 @@ void doBlurRgb(TRasterPT<T> &dstRas, TRasterPT<T> &srcRas, double blur, int dx,
BlurPixel<P> *row2, *col1, *fbuffer; BlurPixel<P> *row2, *col1, *fbuffer;
TRasterGR8P r1; TRasterGR8P r1;
#ifdef WIN32 #ifdef _WIN32
if (useSSE) { if (useSSE) {
fbuffer = (BlurPixel<P> *)_aligned_malloc(llx * ly * sizeof(BlurPixel<P>), 16); fbuffer = (BlurPixel<P> *)_aligned_malloc(llx * ly * sizeof(BlurPixel<P>), 16);
row1 = (T *)_aligned_malloc((llx + 2 * brad) * sizeof(T), 16); row1 = (T *)_aligned_malloc((llx + 2 * brad) * sizeof(T), 16);
@ -853,7 +853,7 @@ void doBlurRgb(TRasterPT<T> &dstRas, TRasterPT<T> &srcRas, double blur, int dx,
dstRas->clear(); dstRas->clear();
} }
#ifdef WIN32 #ifdef _WIN32
if (useSSE) { if (useSSE) {
_aligned_free(col2); _aligned_free(col2);
_aligned_free(col1); _aligned_free(col1);

View file

@ -4,7 +4,7 @@
#include "tpixel.h" #include "tpixel.h"
#include "tpixelutils.h" #include "tpixelutils.h"
#ifdef WIN32 #ifdef _WIN32
#include <emmintrin.h> // per SSE2 #include <emmintrin.h> // per SSE2
#endif #endif

View file

@ -7,7 +7,7 @@
#include "tropcm.h" #include "tropcm.h"
#include "tpalette.h" #include "tpalette.h"
#ifdef WIN32 #ifdef _WIN32
#include <emmintrin.h> // per SSE2 #include <emmintrin.h> // per SSE2
#endif #endif
@ -171,7 +171,7 @@ void do_overT2(TRasterPT<T> rout, const TRasterPT<T> &rup)
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
void do_over_SSE2(TRaster32P rout, const TRaster32P &rup) void do_over_SSE2(TRaster32P rout, const TRaster32P &rup)
{ {
@ -345,7 +345,7 @@ void TRop::over(const TRasterP &rout, const TRasterP &rup, const TPoint &pos)
// TRaster64P rout64 = rout, rin64 = rin; // TRaster64P rout64 = rout, rin64 = rin;
if (rout32 && rup32) { if (rout32 && rup32) {
#ifdef WIN32 #ifdef _WIN32
if (TSystem::getCPUExtensions() & TSystem::CpuSupportsSse2) if (TSystem::getCPUExtensions() & TSystem::CpuSupportsSse2)
do_over_SSE2(rout32, rup32); do_over_SSE2(rout32, rup32);
else else

View file

@ -18,7 +18,7 @@
using namespace TConsts; using namespace TConsts;
#ifdef WIN32 #ifdef _WIN32
#include <emmintrin.h> // per SSE2 #include <emmintrin.h> // per SSE2
#endif #endif
@ -841,7 +841,7 @@ inline void calcValueNoCalc(UINT &calc_value){
//#define PIXVAL_EQ PIXVAL_EQ_EQUAL //#define PIXVAL_EQ PIXVAL_EQ_EQUAL
template <typename PixType> template <typename PixType>
#ifdef WIN32 #ifdef _WIN32
__forceinline __forceinline
#endif #endif
void void
@ -1511,7 +1511,7 @@ void resample_main_rgbm(TRasterPT<T> rout, const TRasterPT<T> &rin,
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
namespace namespace
{ {
@ -1808,7 +1808,7 @@ void inline blendBySSE2(__m128 &pix_out_packed,
} // namespace } // namespace
#endif // WIN32 #endif // _WIN32
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
static void get_prow_gr8(const TRasterGR8P &rin, static void get_prow_gr8(const TRasterGR8P &rin,
@ -2747,7 +2747,7 @@ void rop_resample_rgbm(TRasterPT<T> rout, const TRasterPT<T> &rin,
} }
} }
#ifdef WIN32 #ifdef _WIN32
if ((TSystem::getCPUExtensions() & TSystem::CpuSupportsSse2) && T::maxChannelValue == 255) if ((TSystem::getCPUExtensions() & TSystem::CpuSupportsSse2) && T::maxChannelValue == 255)
resample_main_rgbm_SSE2<T>(rout, rin, aff_xy2uv, aff0_uv2fg, resample_main_rgbm_SSE2<T>(rout, rin, aff_xy2uv, aff0_uv2fg,
min_pix_ref_u, min_pix_ref_v, min_pix_ref_u, min_pix_ref_v,
@ -3651,7 +3651,7 @@ void do_resample(TRasterCM32P rout, const TRasterCM32P &rin, const TAffine &aff)
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template <class T> template <class T>
void resample_main_cm32_rgbm_SSE2(TRasterPT<T> rout, const TRasterCM32P &rin, void resample_main_cm32_rgbm_SSE2(TRasterPT<T> rout, const TRasterCM32P &rin,
const TAffine &aff_xy2uv, const TAffine &aff_xy2uv,
@ -5082,7 +5082,7 @@ void rop_resample_rgbm_2(TRasterPT<T> rout, const TRasterCM32P &rin,
} }
} }
#ifdef WIN32 #ifdef _WIN32
TRaster32P rout32 = rout; TRaster32P rout32 = rout;
if ((TSystem::getCPUExtensions() & TSystem::CpuSupportsSse2) && rout32) if ((TSystem::getCPUExtensions() & TSystem::CpuSupportsSse2) && rout32)
resample_main_cm32_rgbm_SSE2<TPixel32>(rout32, rin, aff_xy2uv, aff0_uv2fg, resample_main_cm32_rgbm_SSE2<TPixel32>(rout32, rin, aff_xy2uv, aff0_uv2fg,

View file

@ -22,7 +22,7 @@ extern "C" {
#include "toonz4.6/raster.h" #include "toonz4.6/raster.h"
} }
#ifdef WIN32 #ifdef _WIN32
#define USE_SSE2 #define USE_SSE2
#endif #endif
@ -78,7 +78,7 @@ void TRop::convert(const TRaster32P &rasOut,
rasOut->lock(); rasOut->lock();
rasIn->lock(); rasIn->lock();
#ifdef WIN32 #ifdef _WIN32
if (TSystem::getCPUExtensions() & TSystem::CpuSupportsSse2) { if (TSystem::getCPUExtensions() & TSystem::CpuSupportsSse2) {
__m128i zeros = _mm_setzero_si128(); __m128i zeros = _mm_setzero_si128();
TPixelFloat *paints = (TPixelFloat *)_aligned_malloc(count2 * sizeof(TPixelFloat), 16); TPixelFloat *paints = (TPixelFloat *)_aligned_malloc(count2 * sizeof(TPixelFloat), 16);
@ -171,7 +171,7 @@ void TRop::convert(const TRaster32P &rasOut,
_aligned_free(inks); _aligned_free(inks);
} else // SSE2 not supported } else // SSE2 not supported
#endif // WIN32 #endif // _WIN32
{ {
std::vector<TPixel32> paints(count2, TPixel32(255, 0, 0)); std::vector<TPixel32> paints(count2, TPixel32(255, 0, 0));

View file

@ -1,7 +1,7 @@
#include "tsystem.h" #include "tsystem.h"
#ifdef WIN32 #ifdef _WIN32
#include <wtypes.h> #include <wtypes.h>
#include <winnt.h> #include <winnt.h>
#include <emmintrin.h> #include <emmintrin.h>
@ -16,7 +16,7 @@ long TSystem::getCPUExtensions()
} }
#else #else
#ifndef WIN32 #ifndef _WIN32
long TSystem::getCPUExtensions() long TSystem::getCPUExtensions()
{ {
return TSystem::CPUExtensionsNone; return TSystem::CPUExtensionsNone;
@ -29,7 +29,7 @@ long CPUExtensionsAvailable = TSystem::CPUExtensionsNone;
bool CPUExtensionsEnabled = true; bool CPUExtensionsEnabled = true;
bool FistTime = true; bool FistTime = true;
//#ifdef WIN32 //#ifdef _WIN32
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
//#define UNICODE // per le funzioni di conversione da/a UNC //#define UNICODE // per le funzioni di conversione da/a UNC
#include <windows.h> #include <windows.h>
#include <lm.h> #include <lm.h>
@ -128,7 +128,7 @@ bool isUncName = false;
pos=2; pos=2;
if(path.length()==2 || !isSlash(path[pos])) m_path.append(1,slash); if(path.length()==2 || !isSlash(path[pos])) m_path.append(1,slash);
} }
#ifdef WIN32 #ifdef _WIN32
else //se si tratta di un path in formato UNC e' del tipo "\\\\MachineName" else //se si tratta di un path in formato UNC e' del tipo "\\\\MachineName"
//RICONTROLLARE! SE SI HA IP ADDRESS FALLIVA! //RICONTROLLARE! SE SI HA IP ADDRESS FALLIVA!
if (path.length() >= 3 && path[0] == '\\' && path[1] == '\\' && (isalpha(path[2]) || isdigit(path[2])) ) if (path.length() >= 3 && path[0] == '\\' && path[1] == '\\' && (isalpha(path[2]) || isdigit(path[2])) )
@ -287,7 +287,7 @@ TFilePath::TFilePath(const QString &path)
bool TFilePath::operator==(const TFilePath &fp) const bool TFilePath::operator==(const TFilePath &fp) const
{ {
#ifdef WIN32 #ifdef _WIN32
return _wcsicmp(m_path.c_str(), fp.m_path.c_str()) == 0; return _wcsicmp(m_path.c_str(), fp.m_path.c_str()) == 0;
#else #else
return m_path == fp.m_path; return m_path == fp.m_path;
@ -304,7 +304,7 @@ bool TFilePath::operator<(const TFilePath &fp) const
int i2 = m_path.find(L"\\"); int i2 = m_path.find(L"\\");
int j2 = fp.m_path.find(L"\\"); int j2 = fp.m_path.find(L"\\");
if (i2 == j2 && j2 == -1) if (i2 == j2 && j2 == -1)
#ifdef WIN32 #ifdef _WIN32
return _wcsicmp(m_path.c_str(), fp.m_path.c_str()) < 0; return _wcsicmp(m_path.c_str(), fp.m_path.c_str()) < 0;
#else #else
return m_path < fp.m_path; return m_path < fp.m_path;
@ -323,7 +323,7 @@ bool TFilePath::operator<(const TFilePath &fp) const
jName = (j2 != -1) ? fp.m_path.substr(j1, j2 - j1) : fp.m_path; jName = (j2 != -1) ? fp.m_path.substr(j1, j2 - j1) : fp.m_path;
//se le due parti di path, conpresi tra slash sono uguali //se le due parti di path, conpresi tra slash sono uguali
//itero il processo di confronto altrimenti ritorno //itero il processo di confronto altrimenti ritorno
#ifdef WIN32 #ifdef _WIN32
char differ; char differ;
differ = _wcsicmp(iName.c_str(), jName.c_str()); differ = _wcsicmp(iName.c_str(), jName.c_str());
if (differ != 0) if (differ != 0)
@ -340,7 +340,7 @@ bool TFilePath::operator<(const TFilePath &fp) const
iName = m_path.substr(i1, m_path.size() - i1); iName = m_path.substr(i1, m_path.size() - i1);
jName = fp.m_path.substr(j1, fp.m_path.size() - j1); jName = fp.m_path.substr(j1, fp.m_path.size() - j1);
#ifdef WIN32 #ifdef _WIN32
return _wcsicmp(iName.c_str(), jName.c_str()) < 0; return _wcsicmp(iName.c_str(), jName.c_str()) < 0;
#else #else
return TFilePath(iName) < TFilePath(jName); return TFilePath(iName) < TFilePath(jName);

View file

@ -11,7 +11,7 @@
#include <iostream> #include <iostream>
using namespace std; using namespace std;
#ifdef WIN32 #ifdef _WIN32
#include <io.h> #include <io.h>
#include <windows.h> #include <windows.h>

View file

@ -5,7 +5,7 @@
#include "tconvert.h" #include "tconvert.h"
#include "tlogger.h" #include "tlogger.h"
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#else #else
@ -34,7 +34,7 @@
class TPluginManager::Plugin class TPluginManager::Plugin
{ {
public: public:
#ifdef WIN32 #ifdef _WIN32
typedef HINSTANCE Handle; typedef HINSTANCE Handle;
#else #else
typedef void *Handle; typedef void *Handle;
@ -65,7 +65,7 @@ typedef const TPluginInfo *TnzLibMainProcType();
namespace namespace
{ {
const char *TnzLibMainProcName = "TLibMain"; const char *TnzLibMainProcName = "TLibMain";
#if !defined(WIN32) #if !defined(_WIN32)
const char *TnzLibMainProcName2 = "_TLibMain"; const char *TnzLibMainProcName2 = "_TLibMain";
#endif #endif
} }
@ -107,7 +107,7 @@ void TPluginManager::unloadPlugins()
it != m_pluginTable.end(); ++it) { it != m_pluginTable.end(); ++it) {
Plugin::Handle handle = (*it)->getHandle(); Plugin::Handle handle = (*it)->getHandle();
#ifndef LINUX #ifndef LINUX
#ifdef WIN32 #ifdef _WIN32
FreeLibrary(handle); FreeLibrary(handle);
#else #else
dlclose(handle); dlclose(handle);
@ -133,7 +133,7 @@ void TPluginManager::loadPlugin(const TFilePath &fp)
} }
TLogger::debug() << "Loading " << fp; TLogger::debug() << "Loading " << fp;
#ifdef WIN32 #ifdef _WIN32
Plugin::Handle handle = LoadLibraryW(fp.getWideString().c_str()); Plugin::Handle handle = LoadLibraryW(fp.getWideString().c_str());
#else #else
wstring str_fp = fp.getWideString(); wstring str_fp = fp.getWideString();
@ -142,7 +142,7 @@ void TPluginManager::loadPlugin(const TFilePath &fp)
if (!handle) { if (!handle) {
// non riesce a caricare la libreria; // non riesce a caricare la libreria;
TLogger::warning() << "Unable to load " << fp; TLogger::warning() << "Unable to load " << fp;
#ifdef WIN32 #ifdef _WIN32
wstring getFormattedMessage(DWORD lastError); wstring getFormattedMessage(DWORD lastError);
TLogger::warning() << toString(getFormattedMessage(GetLastError())); TLogger::warning() << toString(getFormattedMessage(GetLastError()));
#else #else
@ -154,7 +154,7 @@ void TPluginManager::loadPlugin(const TFilePath &fp)
m_pluginTable.push_back(plugin); m_pluginTable.push_back(plugin);
//cout << "loaded" << endl; //cout << "loaded" << endl;
TnzLibMainProcType *tnzLibMain = 0; TnzLibMainProcType *tnzLibMain = 0;
#ifdef WIN32 #ifdef _WIN32
tnzLibMain = (TnzLibMainProcType *) tnzLibMain = (TnzLibMainProcType *)
GetProcAddress(handle, TnzLibMainProcName); GetProcAddress(handle, TnzLibMainProcName);
#else #else
@ -168,7 +168,7 @@ void TPluginManager::loadPlugin(const TFilePath &fp)
// La libreria non esporta TLibMain; // La libreria non esporta TLibMain;
TLogger::warning() << "Corrupted " << fp; TLogger::warning() << "Corrupted " << fp;
#ifdef WIN32 #ifdef _WIN32
FreeLibrary(handle); FreeLibrary(handle);
#else #else
dlclose(handle); dlclose(handle);
@ -185,7 +185,7 @@ void TPluginManager::loadPlugin(const TFilePath &fp)
void TPluginManager::loadPlugins(const TFilePath &dir) void TPluginManager::loadPlugins(const TFilePath &dir)
{ {
#if defined(WIN32) #if defined(_WIN32)
const string extension = "dll"; const string extension = "dll";
#elif defined(LINUX) || defined(__sgi) #elif defined(LINUX) || defined(__sgi)
const string extension = "so"; const string extension = "so";
@ -204,7 +204,7 @@ void TPluginManager::loadPlugins(const TFilePath &dir)
continue; continue;
wstring fullpath = fp.getWideString(); wstring fullpath = fp.getWideString();
#ifdef WIN32 #ifdef _WIN32
bool isDebugLibrary = (fullpath.find(L".d.") == fullpath.size() - (extension.size() + 3)); bool isDebugLibrary = (fullpath.find(L".d.") == fullpath.size() - (extension.size() + 3));

View file

@ -23,7 +23,7 @@ using namespace std;
#include <QCoreApplication> #include <QCoreApplication>
#include <QUuid> #include <QUuid>
#ifdef WIN32 #ifdef _WIN32
#include <qdesktopservices> #include <qdesktopservices>
#include <qhostinfo> #include <qhostinfo>
#include <shlobj.h> #include <shlobj.h>
@ -165,7 +165,7 @@ QString TSystem::getUserName()
for (j = 0; j < list.size(); j++) { for (j = 0; j < list.size(); j++) {
QString value = list.at(j); QString value = list.at(j);
QString user; QString user;
#ifdef WIN32 #ifdef _WIN32
if (value.startsWith("USERNAME=")) if (value.startsWith("USERNAME="))
user = value.right(value.size() - 9); user = value.right(value.size() - 9);
#else #else
@ -364,7 +364,7 @@ else
*/ */
//------------------------------------------------------------ //------------------------------------------------------------
/* /*
#ifdef WIN32 #ifdef _WIN32
wstring getFormattedMessage(DWORD lastError) wstring getFormattedMessage(DWORD lastError)
{ {
@ -446,7 +446,7 @@ void TSystem::deleteFile(const TFilePath &fp)
void TSystem::hideFile(const TFilePath &fp) void TSystem::hideFile(const TFilePath &fp)
{ {
#ifdef WIN32 #ifdef _WIN32
if (!SetFileAttributesW(fp.getWideString().c_str(), FILE_ATTRIBUTE_HIDDEN)) if (!SetFileAttributesW(fp.getWideString().c_str(), FILE_ATTRIBUTE_HIDDEN))
throw TSystemException(fp, "can't hide file!"); throw TSystemException(fp, "can't hide file!");
#else // MACOSX, and others #else // MACOSX, and others
@ -931,7 +931,7 @@ bool TSystem::touchParentDir(const TFilePath &fp)
bool TSystem::showDocument(const TFilePath &path) bool TSystem::showDocument(const TFilePath &path)
{ {
#ifdef WIN32 #ifdef _WIN32
int ret = (int) int ret = (int)
ShellExecuteW(0, L"open", path.getWideString().c_str(), 0, 0, SW_SHOWNORMAL); ShellExecuteW(0, L"open", path.getWideString().c_str(), 0, 0, SW_SHOWNORMAL);
if (ret <= 32) { if (ret <= 32) {

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#ifndef UNICODE #ifndef UNICODE
#define UNICODE #define UNICODE
#endif #endif
@ -21,7 +21,7 @@
#undef PLATFORM #undef PLATFORM
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#define PLATFORM WIN32 #define PLATFORM WIN32
#include <process.h> #include <process.h>
@ -102,7 +102,7 @@ PLATFORM_NOT_SUPPORTED
using namespace std; using namespace std;
#ifdef WIN32 #ifdef _WIN32
wstring getFormattedMessage(DWORD lastError) wstring getFormattedMessage(DWORD lastError)
{ {
@ -138,7 +138,7 @@ wstring getFormattedMessage(DWORD lastError)
void TSystem::outputDebug(string s) void TSystem::outputDebug(string s)
{ {
#ifdef TNZCORE_LIGHT #ifdef TNZCORE_LIGHT
#ifdef WIN32 #ifdef _WIN32
OutputDebugString((LPCWSTR)s.c_str()); OutputDebugString((LPCWSTR)s.c_str());
#else #else
cerr << s << endl; cerr << s << endl;
@ -159,7 +159,7 @@ int TSystem::getProcessId()
bool TSystem::memoryShortage() bool TSystem::memoryShortage()
{ {
#ifdef WIN32 #ifdef _WIN32
MEMORYSTATUSEX memStatus; MEMORYSTATUSEX memStatus;
memStatus.dwLength = sizeof(MEMORYSTATUSEX); memStatus.dwLength = sizeof(MEMORYSTATUSEX);
@ -205,7 +205,7 @@ TINT64 TSystem::getFreeMemorySize(bool onlyPhisicalMemory)
TINT64 totalFree = 0; TINT64 totalFree = 0;
#ifdef WIN32 #ifdef _WIN32
MEMORYSTATUSEX buff; MEMORYSTATUSEX buff;
buff.dwLength = sizeof(MEMORYSTATUSEX); buff.dwLength = sizeof(MEMORYSTATUSEX);
@ -263,7 +263,7 @@ TINT64 TSystem::getFreeMemorySize(bool onlyPhisicalMemory)
@ @ @ERROR : PLATFORM NOT SUPPORTED @ @ @ERROR : PLATFORM NOT SUPPORTED
#endif #endif
#ifndef WIN32 #ifndef _WIN32
#else #else
#endif #endif
@ -287,7 +287,7 @@ TINT64 TSystem::getDiskSize(const TFilePath &diskName)
assert(0); assert(0);
return 0; return 0;
} }
#ifndef WIN32 #ifndef _WIN32
struct statfs buf; struct statfs buf;
wstring str_diskname = diskName.getWideString(); wstring str_diskname = diskName.getWideString();
#ifdef __sgi #ifdef __sgi
@ -327,7 +327,7 @@ TINT64 TSystem::getFreeDiskSize(const TFilePath &diskName)
assert(0); assert(0);
return 0; return 0;
} }
#ifndef WIN32 #ifndef _WIN32
struct statfs buf; struct statfs buf;
wstring str_diskname = diskName.getWideString(); wstring str_diskname = diskName.getWideString();
#ifdef __sgi #ifdef __sgi
@ -361,7 +361,7 @@ TINT64 TSystem::getFreeDiskSize(const TFilePath &diskName)
TINT64 TSystem::getMemorySize(bool onlyPhisicalMemory) TINT64 TSystem::getMemorySize(bool onlyPhisicalMemory)
{ {
#ifdef WIN32 #ifdef _WIN32
MEMORYSTATUS buff; MEMORYSTATUS buff;
GlobalMemoryStatus(&buff); GlobalMemoryStatus(&buff);
@ -400,7 +400,7 @@ TINT64 TSystem::getMemorySize(bool onlyPhisicalMemory)
@ @ @ERROR : PLATFORM NOT SUPPORTED @ @ @ERROR : PLATFORM NOT SUPPORTED
#endif #endif
#ifndef WIN32 #ifndef _WIN32
#else #else
#endif #endif
} }
@ -409,7 +409,7 @@ TINT64 TSystem::getMemorySize(bool onlyPhisicalMemory)
void TSystem::moveFileToRecycleBin(const TFilePath &fp) void TSystem::moveFileToRecycleBin(const TFilePath &fp)
{ {
#if defined(WIN32) #if defined(_WIN32)
// //
// from http://msdn.microsoft.com/msdnmag/issues/01/04/c/default.aspx // from http://msdn.microsoft.com/msdnmag/issues/01/04/c/default.aspx
// //
@ -497,7 +497,7 @@ TString TSystemException::getMessage() const
DEFAULT: DEFAULT:
msg = L": Unknown error"; msg = L": Unknown error";
#ifndef WIN32 #ifndef _WIN32
CASE ELOOP : msg = L": Too many symbolic links were encountered in translating path."; CASE ELOOP : msg = L": Too many symbolic links were encountered in translating path.";
#ifndef MACOSX #ifndef MACOSX
CASE EMULTIHOP : msg = L": Components of path require hopping to multiple remote machines and the file system does not allow it."; CASE EMULTIHOP : msg = L": Components of path require hopping to multiple remote machines and the file system does not allow it.";

View file

@ -3,7 +3,7 @@
#include "tsystem.h" #include "tsystem.h"
#include "tconvert.h" #include "tconvert.h"
#ifdef WIN32 #ifdef _WIN32
#define UNICODE // per le funzioni di conversione da/a UNC #define UNICODE // per le funzioni di conversione da/a UNC
#include <windows.h> #include <windows.h>
#include <lm.h> #include <lm.h>
@ -22,7 +22,7 @@ bool TSystem::isUNC(const TFilePath &path)
TFilePath TSystem::toUNC(const TFilePath &fp) TFilePath TSystem::toUNC(const TFilePath &fp)
{ {
#ifdef WIN32 #ifdef _WIN32
if (QString::fromStdWString(fp.getWideString()).startsWith('+')) if (QString::fromStdWString(fp.getWideString()).startsWith('+'))
return fp; return fp;
if (isUNC(fp)) if (isUNC(fp))
@ -146,7 +146,7 @@ TFilePath TSystem::toUNC(const TFilePath &fp)
TFilePath TSystem::toLocalPath(const TFilePath &fp) TFilePath TSystem::toLocalPath(const TFilePath &fp)
{ {
#ifdef WIN32 #ifdef _WIN32
if (!isUNC(fp)) if (!isUNC(fp))
return TFilePath(fp); return TFilePath(fp);

View file

@ -213,7 +213,7 @@ TFilePath getTestFile(string name)
TFilePath testFile; TFilePath testFile;
TFilePath parentDir = TSystem::getBinDir().getParentDir(); TFilePath parentDir = TSystem::getBinDir().getParentDir();
#ifndef WIN32 #ifndef _WIN32
parentDir = parentDir.getParentDir(); parentDir = parentDir.getParentDir();
#endif #endif

View file

@ -10,7 +10,7 @@
#include <QDebug> #include <QDebug>
//============================================================================= //=============================================================================
#ifdef WIN32 #ifdef _WIN32
class MyTimer class MyTimer
{ {
@ -393,7 +393,7 @@ void TL2LAutocloser::Imp::search(
if (strokea == 0 || strokeb == 0) if (strokea == 0 || strokeb == 0)
return; return;
/* /*
#ifdef WIN32 #ifdef _WIN32
MyTimer timer; MyTimer timer;
qDebug() << "search started"; qDebug() << "search started";
timer.start(); timer.start();
@ -511,7 +511,7 @@ void TL2LAutocloser::Imp::search(
segments.push_back(segment); segments.push_back(segment);
} }
/* /*
#ifdef WIN32 #ifdef _WIN32
double elapsed = timer.elapsedSeconds(); double elapsed = timer.elapsedSeconds();
qDebug() << "search completed. time=" << elapsed << "s"; qDebug() << "search completed. time=" << elapsed << "s";
#endif #endif

View file

@ -15,7 +15,7 @@
#define DVVAR DV_IMPORT_VAR #define DVVAR DV_IMPORT_VAR
#endif #endif
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4251) #pragma warning(disable : 4251)
#endif #endif

View file

@ -16,7 +16,7 @@
#define DVVAR DV_IMPORT_VAR #define DVVAR DV_IMPORT_VAR
#endif #endif
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4251) #pragma warning(disable : 4251)
#endif #endif

View file

@ -12,7 +12,7 @@
//#include "drawutil.h" //#include "drawutil.h"
#include "tvectorimage.h" #include "tvectorimage.h"
#ifdef WIN32 #ifdef _WIN32
#include <crtdbg.h> #include <crtdbg.h>
#include <Windows.h> #include <Windows.h>
#endif #endif
@ -317,7 +317,7 @@ void removeFalseHoles(const vector<TStroke *> &strokes);
inline void TraceLinkedQuadraticList(LinkedQuadraticList &quadraticList) inline void TraceLinkedQuadraticList(LinkedQuadraticList &quadraticList)
{ {
#ifdef WIN32 #ifdef _WIN32
_RPT0(_CRT_WARN, _RPT0(_CRT_WARN,
"\n__________________________________________________\n"); "\n__________________________________________________\n");
LinkedQuadraticList::iterator it = quadraticList.begin(); LinkedQuadraticList::iterator it = quadraticList.begin();

View file

@ -6,7 +6,7 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
void swapRedBlueChannels(void *buffer, int bufferSize) // Flips The Red And Blue Bytes (WidthxHeight) void swapRedBlueChannels(void *buffer, int bufferSize) // Flips The Red And Blue Bytes (WidthxHeight)
{ {
@ -127,7 +127,7 @@ void QtOfflineGL::createContext(TDimension rasterSize, std::shared_ptr<TOfflineG
QGLFormat fmt; QGLFormat fmt;
#ifdef WIN32 #ifdef _WIN32
fmt.setAlphaBufferSize(8); fmt.setAlphaBufferSize(8);
fmt.setAlpha(true); fmt.setAlpha(true);
fmt.setRgba(true); fmt.setRgba(true);
@ -280,7 +280,7 @@ void QtOfflineGLPBuffer::createContext(TDimension rasterSize)
QGLFormat fmt; QGLFormat fmt;
#ifdef WIN32 #ifdef _WIN32
fmt.setAlphaBufferSize(8); fmt.setAlphaBufferSize(8);
fmt.setAlpha(false); fmt.setAlpha(false);
fmt.setRgba(true); fmt.setRgba(true);

View file

@ -17,7 +17,7 @@
#include "tcurves.h" #include "tcurves.h"
#include "tstrokeoutline.h" #include "tstrokeoutline.h"
#ifndef WIN32 #ifndef _WIN32
#define CALLBACK #define CALLBACK
#endif #endif

View file

@ -59,7 +59,7 @@ void TOfflineGL::setContextManager(TGLContextManager *contextManager)
// WIN32Implementation : implementazione offlineGL WIN32 // WIN32Implementation : implementazione offlineGL WIN32
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
namespace namespace
{ {

View file

@ -15,7 +15,7 @@
//#include "tdebugmessage.h" //#include "tdebugmessage.h"
//#include "tflash.h" //#include "tflash.h"
#ifndef WIN32 #ifndef _WIN32
#define CALLBACK #define CALLBACK
#endif #endif

View file

@ -28,7 +28,7 @@
#include "tsimplecolorstyles.h" #include "tsimplecolorstyles.h"
#ifndef WIN32 #ifndef _WIN32
#define CALLBACK #define CALLBACK
#endif #endif
@ -119,7 +119,7 @@ void drawAntialiasedOutline(const std::vector<TOutlinePoint> &_v, const TStroke
// DisplayListManager definition // DisplayListManager definition
//************************************************************************************* //*************************************************************************************
#ifdef WIN32 #ifdef _WIN32
namespace namespace
{ {
@ -292,7 +292,7 @@ public:
} // namespace } // namespace
#endif // WIN32 #endif // _WIN32
//************************************************************************************* //*************************************************************************************
// TSimpleStrokeStyle implementation // TSimpleStrokeStyle implementation
@ -1460,7 +1460,7 @@ void TVectorImagePatternStrokeStyle::computeTransformations(vector<TAffine> &tra
void TVectorImagePatternStrokeStyle::clearGlDisplayLists() void TVectorImagePatternStrokeStyle::clearGlDisplayLists()
{ {
#ifdef WIN32 #ifdef _WIN32
DisplayListManager *pmgr = DisplayListManager::instance(); DisplayListManager *pmgr = DisplayListManager::instance();
assert(pmgr); assert(pmgr);
pmgr->clearLists(); pmgr->clearLists();
@ -1590,7 +1590,7 @@ void TVectorImagePatternStrokeStyle::drawStroke(const TVectorRenderData &rd, con
tglMultMatrix(totalTransformation); tglMultMatrix(totalTransformation);
CHECK_GL_ERROR CHECK_GL_ERROR
#ifdef WIN32 #ifdef _WIN32
GLuint listId = DisplayListManager::instance()->getDisplayListId(imgPointer, m_name, fid, rd); GLuint listId = DisplayListManager::instance()->getDisplayListId(imgPointer, m_name, fid, rd);
if (listId != 0) { if (listId != 0) {

View file

@ -12,7 +12,7 @@
//#include "tlevel_io.h" //#include "tlevel_io.h"
#ifndef WIN32 #ifndef _WIN32
#define CALLBACK #define CALLBACK
#endif #endif
// To avoid linking problems with HP ZX2000 // To avoid linking problems with HP ZX2000
@ -93,7 +93,7 @@ extern "C" void CALLBACK myCombine(GLdouble coords[3], GLdouble *d[4],
//------------------------------------------------------------------- //-------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
typedef GLvoid(CALLBACK *GluCallback)(void); typedef GLvoid(CALLBACK *GluCallback)(void);
#endif #endif

View file

@ -3,7 +3,7 @@
#ifndef __TTWAIN_H__ #ifndef __TTWAIN_H__
#define __TTWAIN_H__ #define __TTWAIN_H__
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#else #else
#ifndef _UNIX_ #ifndef _UNIX_

View file

@ -25,7 +25,7 @@ typedef enum TWAINSTATE {
TWAIN_TRANSFERRING /* image in transit */ TWAIN_TRANSFERRING /* image in transit */
} TWAINSTATE; } TWAINSTATE;
#ifdef WIN32 #ifdef _WIN32
#ifdef x64 #ifdef x64
#define DSM_FILENAME "TWAINDSM.DLL" #define DSM_FILENAME "TWAINDSM.DLL"
#else #else

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#endif #endif
@ -128,7 +128,7 @@ void TTWAIN_RecordError(void)
} }
if (TTwainData.ErrRC == TWRC_FAILURE && TTwainData.ErrCC == TWCC_OPERATIONERROR) { if (TTwainData.ErrRC == TWRC_FAILURE && TTwainData.ErrCC == TWCC_OPERATIONERROR) {
#ifdef WIN32 #ifdef _WIN32
OutputDebugString(Msg_out); OutputDebugString(Msg_out);
#else #else
#ifdef TOONZDEBUG #ifdef TOONZDEBUG

View file

@ -3,7 +3,7 @@
/*max@home*/ /*max@home*/
#ifndef __GLOBAL_DEF_H__ #ifndef __GLOBAL_DEF_H__
#define __GLOBAL_DEF_H__ #define __GLOBAL_DEF_H__
#ifdef WIN32 #ifdef _WIN32
#define GLOBAL_LOCK(P) GlobalLock(P) #define GLOBAL_LOCK(P) GlobalLock(P)
#define GLOBAL_ALLOC(T, S) GlobalAlloc(T, S) #define GLOBAL_ALLOC(T, S) GlobalAlloc(T, S)
#define GLOBAL_FREE(P) GlobalFree(P) #define GLOBAL_FREE(P) GlobalFree(P)

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#endif #endif
@ -203,7 +203,7 @@ int TTWAIN_MessageHook(void *lpmsg)
//printf("%s\n", __PRETTY_FUNCTION__); //printf("%s\n", __PRETTY_FUNCTION__);
if (TTWAIN_GetState() >= TWAIN_SOURCE_ENABLED) { if (TTWAIN_GetState() >= TWAIN_SOURCE_ENABLED) {
/* source enabled */ /* source enabled */
#ifdef WIN32 #ifdef _WIN32
TW_EVENT twEvent; TW_EVENT twEvent;
twEvent.pEvent = (TW_MEMREF)lpmsg; twEvent.pEvent = (TW_MEMREF)lpmsg;
twEvent.TWMessage = MSG_NULL; twEvent.TWMessage = MSG_NULL;
@ -639,7 +639,7 @@ void *TTWAIN_AcquireNative(void *hwnd)
return hnative; return hnative;
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#ifdef WIN32 #ifdef _WIN32
typedef void(MyFun)(HWND); typedef void(MyFun)(HWND);

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#endif #endif
@ -782,7 +782,7 @@ l'immagine)
if (!handle) if (!handle)
return TRUE; /*non sono semplicamente riuscito a prendere info riguardo return TRUE; /*non sono semplicamente riuscito a prendere info riguardo
il pixelFlavor, ma setPixelType e' andato a buon fine */ il pixelFlavor, ma setPixelType e' andato a buon fine */
#ifdef WIN32 #ifdef _WIN32
container = (TW_ENUMERATION *)handle; container = (TW_ENUMERATION *)handle;
#else #else
container = (TW_ENUMERATION *)GLOBAL_LOCK(handle); container = (TW_ENUMERATION *)GLOBAL_LOCK(handle);

View file

@ -103,11 +103,11 @@
#endif #endif
/* Microsoft C/C++ Compiler */ /* Microsoft C/C++ Compiler */
#if defined(WIN32) || defined(WIN64) || defined(_WINDOWS) #if defined(_WIN32) || defined(WIN64) || defined(_WINDOWS)
#define TWH_CMP_MSC #define TWH_CMP_MSC
#if defined(_WIN64) || defined(WIN64) #if defined(_WIN64) || defined(WIN64)
#define TWH_64BIT #define TWH_64BIT
#elif defined(WIN32) || defined(_WIN32) #elif defined(_WIN32) || defined(_WIN32)
#define TWH_32BIT #define TWH_32BIT
#endif #endif
@ -1844,7 +1844,7 @@ typedef struct {
* Depreciated Items * * Depreciated Items *
****************************************************************************/ ****************************************************************************/
#ifdef _MSWIN_ #ifdef _MSWIN_
#if defined(WIN32) || defined(WIN64) #if defined(_WIN32) || defined(WIN64)
#define TW_HUGE #define TW_HUGE
#elif !defined(TWH_CMP_GNU) #elif !defined(TWH_CMP_GNU)
#define TW_HUGE huge #define TW_HUGE huge

View file

@ -156,7 +156,7 @@ private:
// //
//=========================================================== //===========================================================
#ifdef WIN32 #ifdef _WIN32
TLevelWriterAvi::TLevelWriterAvi(const TFilePath &path, TPropertyGroup *winfo) TLevelWriterAvi::TLevelWriterAvi(const TFilePath &path, TPropertyGroup *winfo)
: TLevelWriter(path, winfo), m_aviFile(0), m_videoStream(0), m_audioStream(0), m_bitmapinfo(0), m_outputFmt(0), m_hic(0), m_initDone(false), IOError(0), m_st(0), m_bpp(32), m_maxDataSize(0), m_buffer(0), m_firstframe(-1) : TLevelWriter(path, winfo), m_aviFile(0), m_videoStream(0), m_audioStream(0), m_bitmapinfo(0), m_outputFmt(0), m_hic(0), m_initDone(false), IOError(0), m_st(0), m_bpp(32), m_maxDataSize(0), m_buffer(0), m_firstframe(-1)
@ -647,10 +647,10 @@ private:
// //
//=========================================================== //===========================================================
#ifdef WIN32 #ifdef _WIN32
TLevelReaderAvi::TLevelReaderAvi(const TFilePath &path) TLevelReaderAvi::TLevelReaderAvi(const TFilePath &path)
: TLevelReader(path) : TLevelReader(path)
#ifdef WIN32 #ifdef _WIN32
, ,
m_srcBitmapInfo(0), m_dstBitmapInfo(0), m_hic(0), IOError(0), m_prevFrame(-1), m_decompressedBuffer(0) m_srcBitmapInfo(0), m_dstBitmapInfo(0), m_hic(0), IOError(0), m_prevFrame(-1), m_decompressedBuffer(0)
#endif #endif
@ -1035,7 +1035,7 @@ TImageP TLevelReaderAvi::load(int frameIndex)
// //
//=========================================================== //===========================================================
#ifdef WIN32 #ifdef _WIN32
Tiio::AviWriterProperties::AviWriterProperties() Tiio::AviWriterProperties::AviWriterProperties()
: m_codec("Codec") : m_codec("Codec")
{ {

View file

@ -3,7 +3,7 @@
#ifndef TIIO_AVI_H #ifndef TIIO_AVI_H
#define TIIO_AVI_H #define TIIO_AVI_H
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#include <vfw.h> #include <vfw.h>
#endif #endif
@ -33,7 +33,7 @@ public:
private: private:
TThread::Mutex m_mutex; TThread::Mutex m_mutex;
#ifdef WIN32 #ifdef _WIN32
PAVIFILE m_aviFile; PAVIFILE m_aviFile;
PAVISTREAM m_videoStream; PAVISTREAM m_videoStream;
PAVISTREAM m_audioStream; PAVISTREAM m_audioStream;
@ -53,7 +53,7 @@ private:
void doSaveSoundTrack(); void doSaveSoundTrack();
void searchForCodec(); void searchForCodec();
#ifdef WIN32 #ifdef _WIN32
int compressFrame(BITMAPINFOHEADER *outHeader, void **bufferOut, int frameIndex, int compressFrame(BITMAPINFOHEADER *outHeader, void **bufferOut, int frameIndex,
DWORD flagsIn, DWORD &flagsOut); DWORD flagsIn, DWORD &flagsOut);
#endif #endif
@ -80,7 +80,7 @@ public:
TThread::Mutex m_mutex; TThread::Mutex m_mutex;
void *m_decompressedBuffer; void *m_decompressedBuffer;
#ifdef WIN32 #ifdef _WIN32
private: private:
PAVISTREAM m_videoStream; PAVISTREAM m_videoStream;
BITMAPINFO *m_srcBitmapInfo, *m_dstBitmapInfo; BITMAPINFO *m_srcBitmapInfo, *m_dstBitmapInfo;

View file

@ -2,7 +2,7 @@
#include "tfile_io.h" #include "tfile_io.h"
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#include <assert.h> #include <assert.h>

View file

@ -32,7 +32,7 @@ TNZ_LITTLE_ENDIAN undefined !!
#define TBOOL int #define TBOOL int
typedef struct LPIXEL { typedef struct LPIXEL {
#ifdef WIN32 #ifdef _WIN32
unsigned char b, g, r, m; unsigned char b, g, r, m;
#elif defined(__sgi) #elif defined(__sgi)
unsigned char m, b, g, r; unsigned char m, b, g, r;
@ -46,7 +46,7 @@ TNZ_LITTLE_ENDIAN undefined !!
} LPIXEL; } LPIXEL;
typedef struct SPIXEL { typedef struct SPIXEL {
#ifdef WIN32 #ifdef _WIN32
unsigned short b, g, r, m; unsigned short b, g, r, m;
#elif defined(__sgi) #elif defined(__sgi)
unsigned short m, b, g, r; unsigned short m, b, g, r;
@ -121,7 +121,7 @@ typedef struct IMAGE {
#define CROP(X, MIN, MAX) (X < MIN ? MIN : (X > MAX ? MAX : X)) #define CROP(X, MIN, MAX) (X < MIN ? MIN : (X > MAX ? MAX : X))
#ifdef WIN32 #ifdef _WIN32
#define LPIXEL_TO_BGRM(X) (X) #define LPIXEL_TO_BGRM(X) (X)
#else #else
#if TNZ_LITTLE_ENDIAN #if TNZ_LITTLE_ENDIAN

View file

@ -7,7 +7,7 @@ extern "C" {
#include <stdio.h> #include <stdio.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#ifndef WIN32 #ifndef _WIN32
#include <unistd.h> #include <unistd.h>
#endif #endif

View file

@ -326,7 +326,7 @@ Tiio::TifWriterProperties::TifWriterProperties()
{ {
m_byteOrdering.addValue(L"IBM PC"); m_byteOrdering.addValue(L"IBM PC");
m_byteOrdering.addValue(L"Mac"); m_byteOrdering.addValue(L"Mac");
#ifdef WIN32 #ifdef _WIN32
m_byteOrdering.setValue(L"IBM PC"); m_byteOrdering.setValue(L"IBM PC");
#else #else
m_byteOrdering.setValue(L"Mac"); m_byteOrdering.setValue(L"Mac");

View file

@ -19,7 +19,7 @@
#if defined(MACOSX) #if defined(MACOSX)
#include <architecture/i386/io.h> #include <architecture/i386/io.h>
#elif defined(WIN32) #elif defined(_WIN32)
#include <io.h> #include <io.h>
#endif #endif
@ -304,7 +304,7 @@ UINT TStyleParam::getSize()
/*=====================================================================*/ /*=====================================================================*/
#ifdef WIN32 #ifdef _WIN32
#define CHECK_FOR_READ_ERROR(filePath) #define CHECK_FOR_READ_ERROR(filePath)
#else #else
#define CHECK_FOR_READ_ERROR(filePath) \ #define CHECK_FOR_READ_ERROR(filePath) \
@ -545,7 +545,7 @@ ParsedPliImp::ParsedPliImp(const TFilePath &filename, bool readInfo)
// cerr<<m_filePath<<endl; // cerr<<m_filePath<<endl;
//#ifdef WIN32 //#ifdef _WIN32
m_iChan.open(filename); m_iChan.open(filename);
//m_iChan.exceptions( ios::failbit | ios::badbit); //m_iChan.exceptions( ios::failbit | ios::badbit);

View file

@ -3,7 +3,7 @@
#ifndef _PLI_IO_H #ifndef _PLI_IO_H
#define _PLI_IO_H #define _PLI_IO_H
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4661) #pragma warning(disable : 4661)
#pragma warning(disable : 4018) #pragma warning(disable : 4018)
#endif #endif

View file

@ -1,6 +1,6 @@
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4661) #pragma warning(disable : 4661)
#endif #endif

View file

@ -16,7 +16,7 @@
#include "filequantel.h" #include "filequantel.h"
#include "filequantelP.h" #include "filequantelP.h"
#ifdef WIN32 #ifdef _WIN32
#define STAT_BUF struct _stat #define STAT_BUF struct _stat
#else #else
#define STAT_BUF struct stat #define STAT_BUF struct stat

View file

@ -32,7 +32,7 @@
#include <assert.h> #include <assert.h>
#ifdef WIN32 #ifdef _WIN32
#include <io.h> #include <io.h>
#include <windows.h> #include <windows.h>
#else #else
@ -291,7 +291,7 @@ static IMAGERGB *iopen(int fd, OpenMode openMode,
tablesize = image->ysize * image->zsize * (int)sizeof(TINT32); tablesize = image->ysize * image->zsize * (int)sizeof(TINT32);
lseek(f, 512L, 0); lseek(f, 512L, 0);
if (read(f, image->rowstart, tablesize) != tablesize) { if (read(f, image->rowstart, tablesize) != tablesize) {
#ifdef WIN32 #ifdef _WIN32
DWORD error; DWORD error;
error = GetLastError(); error = GetLastError();
#endif #endif
@ -302,7 +302,7 @@ static IMAGERGB *iopen(int fd, OpenMode openMode,
if (image->dorev) if (image->dorev)
cvtTINT32s(image->rowstart, tablesize); cvtTINT32s(image->rowstart, tablesize);
if (read(f, image->rowsize, tablesize) != tablesize) { if (read(f, image->rowsize, tablesize) != tablesize) {
#ifdef WIN32 #ifdef _WIN32
DWORD error; DWORD error;
error = GetLastError(); error = GetLastError();
#endif #endif

View file

@ -25,7 +25,7 @@ extern "C" {
#include "tiio_tif.h" #include "tiio_tif.h"
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#include "windows.h" #include "windows.h"
#endif #endif
@ -658,7 +658,7 @@ Tiio::TifWriterProperties::TifWriterProperties()
{ {
m_byteOrdering.addValue(L"IBM PC"); m_byteOrdering.addValue(L"IBM PC");
m_byteOrdering.addValue(L"Mac"); m_byteOrdering.addValue(L"Mac");
#ifdef WIN32 #ifdef _WIN32
m_byteOrdering.setValue(L"IBM PC"); m_byteOrdering.setValue(L"IBM PC");
#else #else
m_byteOrdering.setValue(L"Mac"); m_byteOrdering.setValue(L"Mac");

View file

@ -17,7 +17,7 @@
#include <math.h> #include <math.h>
//Platform-specific includes //Platform-specific includes
#ifdef WIN32 #ifdef _WIN32
#ifndef x64 #ifndef x64
#define float_t Float_t #define float_t Float_t
@ -153,14 +153,14 @@ void initImageIo(bool lightVersion)
if (!lightVersion) { if (!lightVersion) {
#ifdef WIN32 #ifdef _WIN32
TLevelWriter::define("avi", TLevelWriterAvi::create, true); TLevelWriter::define("avi", TLevelWriterAvi::create, true);
TLevelReader::define("avi", TLevelReaderAvi::create); TLevelReader::define("avi", TLevelReaderAvi::create);
TFileType::declare("avi", TFileType::RASTER_LEVEL); TFileType::declare("avi", TFileType::RASTER_LEVEL);
Tiio::defineWriterProperties("avi", new Tiio::AviWriterProperties()); Tiio::defineWriterProperties("avi", new Tiio::AviWriterProperties());
#endif // WIN32 #endif // _WIN32
if (IsQuickTimeInstalled()) { if (IsQuickTimeInstalled()) {
TLevelWriter::define("mov", TLevelWriterMov::create, true); TLevelWriter::define("mov", TLevelWriterMov::create, true);
@ -175,7 +175,7 @@ void initImageIo(bool lightVersion)
} }
/* /*
#if (defined(WIN32) && !defined(x64)) #if (defined(_WIN32) && !defined(x64))
TLevelWriter::define("pct", TLevelWriterPicPct::create, true); TLevelWriter::define("pct", TLevelWriterPicPct::create, true);
TLevelReader::define("pct", TLevelReaderPicPct::create); TLevelReader::define("pct", TLevelReaderPicPct::create);
@ -190,7 +190,7 @@ void initImageIo(bool lightVersion)
TFileType::declare("pict", TFileType::RASTER_LEVEL); TFileType::declare("pict", TFileType::RASTER_LEVEL);
Tiio::defineWriterProperties("pict", new Tiio::PctWriterProperties()); Tiio::defineWriterProperties("pict", new Tiio::PctWriterProperties());
#endif // WIN32 && 32-bit #endif // _WIN32 && 32-bit
*/ */
} }
} }

View file

@ -8,7 +8,7 @@
| | | |
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
#ifdef WIN32 #ifdef _WIN32
#pragma warning(push) #pragma warning(push)
#pragma warning(disable : 4113) #pragma warning(disable : 4113)
#pragma warning(disable : 4996) #pragma warning(disable : 4996)

View file

@ -7,7 +7,7 @@
#include "tiffio.h" #include "tiffio.h"
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#include "windows.h" #include "windows.h"
#endif #endif

View file

@ -11,7 +11,7 @@
//#include "tspecialstyleid.h" //#include "tspecialstyleid.h"
#include <set> #include <set>
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4996) #pragma warning(disable : 4996)
#include "windows.h" #include "windows.h"
#endif #endif

View file

@ -25,7 +25,7 @@
class TStroke; class TStroke;
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
// to avoid annoying warning // to avoid annoying warning
#pragma warning(push) #pragma warning(push)
#pragma warning(disable : 4290) #pragma warning(disable : 4290)
@ -96,7 +96,7 @@ public:
}; };
} }
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
#pragma warning(pop) #pragma warning(pop)
#endif #endif

View file

@ -30,7 +30,7 @@
class TStroke; class TStroke;
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
// to avoid annoying warning // to avoid annoying warning
#pragma warning(push) #pragma warning(push)
#pragma warning(disable : 4251) #pragma warning(disable : 4251)
@ -197,7 +197,7 @@ public:
}; };
} }
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
#pragma warning(pop) #pragma warning(pop)
#endif #endif

View file

@ -21,7 +21,7 @@
#include "ExtUtil.h" #include "ExtUtil.h"
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
// to avoid annoying warning // to avoid annoying warning
#pragma warning(push) #pragma warning(push)
#pragma warning(disable : 4251) #pragma warning(disable : 4251)
@ -194,7 +194,7 @@ public:
}; };
} }
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
#pragma warning(pop) #pragma warning(pop)
#endif #endif

View file

@ -20,7 +20,7 @@
#define DVVAR DV_IMPORT_VAR #define DVVAR DV_IMPORT_VAR
#endif #endif
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
// to avoid annoying warning // to avoid annoying warning
#pragma warning(push) #pragma warning(push)
#pragma warning(disable : 4290) #pragma warning(disable : 4290)
@ -154,7 +154,7 @@ private:
}; };
} }
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
#pragma warning(pop) #pragma warning(pop)
#endif #endif

View file

@ -24,7 +24,7 @@
#include <stdexcept> #include <stdexcept>
#include <iostream> #include <iostream>
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
// to avoid annoying warning // to avoid annoying warning
#pragma warning(push) #pragma warning(push)
#pragma warning(disable : 4290) #pragma warning(disable : 4290)
@ -127,7 +127,7 @@ public:
}; };
} }
#if defined(WIN32) && (_MSC_VER <= 1200) #if defined(_WIN32) && (_MSC_VER <= 1200)
#pragma warning(pop) #pragma warning(pop)
#endif #endif

View file

@ -152,7 +152,7 @@ private:
//=============================================================================== //===============================================================================
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<PlasticSkeleton>; template class DVAPI TSmartPointerT<PlasticSkeleton>;
#endif #endif

View file

@ -251,7 +251,7 @@ typedef PlasticSkeletonDeformation SkD;
//=============================================================================== //===============================================================================
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<PlasticSkeletonDeformation>; template class DVAPI TSmartPointerT<PlasticSkeletonDeformation>;
#endif #endif

View file

@ -15,7 +15,7 @@
#if !(defined(x64) || defined(__LP64__)) #if !(defined(x64) || defined(__LP64__))
#ifdef WIN32 #ifdef _WIN32
#define list List #define list List
#define map Map #define map Map
@ -44,7 +44,7 @@
//#include "tlevel_io.h" //#include "tlevel_io.h"
#include "tproperty.h" #include "tproperty.h"
#else //WIN32 #else // _WIN32
#define list List #define list List
#define map Map #define map Map
@ -60,7 +60,7 @@
#undef iterator #undef iterator
#undef float_t #undef float_t
#endif //!WIN32 #endif // !_WIN32
void DVAPI fromPropertiesToAtoms(TPropertyGroup &pg, QTAtomContainer &atoms); void DVAPI fromPropertiesToAtoms(TPropertyGroup &pg, QTAtomContainer &atoms);
void DVAPI fromAtomsToProperties(const QTAtomContainer &atoms, TPropertyGroup &pg); void DVAPI fromAtomsToProperties(const QTAtomContainer &atoms, TPropertyGroup &pg);

View file

@ -44,7 +44,7 @@ static QString srvName()
return name; return name;
} }
#ifdef WIN32 #ifdef _WIN32
static QString srvCmdline() static QString srvCmdline()
{ {
static QString cmd("srv/t32bitsrv.exe " + srvName()); static QString cmd("srv/t32bitsrv.exe " + srvName());

View file

@ -13,7 +13,7 @@
#define DVVAR DV_IMPORT_VAR #define DVVAR DV_IMPORT_VAR
#endif #endif
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#elif defined(__sgi) #elif defined(__sgi)
#include <sys/atomic_ops.h> #include <sys/atomic_ops.h>
@ -227,7 +227,7 @@ public:
long operator++() long operator++()
{ {
#ifdef WIN32 #ifdef _WIN32
return InterlockedIncrement(&m_var); return InterlockedIncrement(&m_var);
#elif defined(__sgi) #elif defined(__sgi)
return ++m_var; return ++m_var;
@ -244,7 +244,7 @@ public:
long operator+=(long value) long operator+=(long value)
{ {
#ifdef WIN32 #ifdef _WIN32
InterlockedExchangeAdd(&m_var, value); InterlockedExchangeAdd(&m_var, value);
return m_var; return m_var;
@ -266,7 +266,7 @@ public:
long operator--() long operator--()
{ {
#ifdef WIN32 #ifdef _WIN32
return InterlockedDecrement(&m_var); return InterlockedDecrement(&m_var);
#elif defined(__sgi) #elif defined(__sgi)
return --m_var; return --m_var;
@ -300,7 +300,7 @@ public:
#endif #endif
}; };
#ifdef WIN32 #ifdef _WIN32
long m_var; long m_var;
#elif defined(__sgi) #elif defined(__sgi)
long m_var; long m_var;

View file

@ -7,7 +7,7 @@
PER ORA SI PUO' USARE LA CACHE SOLO CON WINDOWS PER ORA SI PUO' USARE LA CACHE SOLO CON WINDOWS
*/ */
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#endif #endif
@ -292,7 +292,7 @@ private:
int m_viewFrameMin, int m_viewFrameMin,
m_viewFrameMax; m_viewFrameMax;
#ifdef WIN32 #ifdef _WIN32
HANDLE m_hFile, m_hMap; HANDLE m_hFile, m_hMap;
LPVOID m_fileMapAddress; LPVOID m_fileMapAddress;

View file

@ -362,7 +362,7 @@ protected:
//-------------------------------------------------------------------------- //--------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TColorStyle>; template class DVAPI TSmartPointerT<TColorStyle>;
#endif #endif
typedef TSmartPointerT<TColorStyle> TColorStyleP; typedef TSmartPointerT<TColorStyle> TColorStyleP;

View file

@ -54,7 +54,7 @@ private:
//--------------------------------------------------------- //---------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TColumnHeader>; template class DVAPI TSmartPointerT<TColumnHeader>;
#endif #endif

View file

@ -3,7 +3,7 @@
#ifndef T_COMMON_INCLUDED #ifndef T_COMMON_INCLUDED
#define T_COMMON_INCLUDED #define T_COMMON_INCLUDED
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4786) #pragma warning(disable : 4786)
#pragma warning(disable : 4251) #pragma warning(disable : 4251)
#pragma warning(disable : 4146) #pragma warning(disable : 4146)
@ -137,7 +137,7 @@ typedef unsigned short USHORT;
typedef short SHORT; typedef short SHORT;
typedef unsigned int UINT; typedef unsigned int UINT;
#ifndef WIN32 #ifndef _WIN32
typedef unsigned char BYTE; typedef unsigned char BYTE;
#endif #endif
@ -232,7 +232,7 @@ const int c_minint = ~c_maxint;
const unsigned int c_maxuint = (unsigned int)(~0U); const unsigned int c_maxuint = (unsigned int)(~0U);
#ifdef WIN32 #ifdef _WIN32
#define DV_EXPORT_API __declspec(dllexport) #define DV_EXPORT_API __declspec(dllexport)
#define DV_IMPORT_API __declspec(dllimport) #define DV_IMPORT_API __declspec(dllimport)
#define DV_EXPORT_VAR __declspec(dllexport) #define DV_EXPORT_VAR __declspec(dllexport)
@ -244,7 +244,7 @@ const unsigned int c_maxuint = (unsigned int)(~0U);
#define DV_IMPORT_VAR #define DV_IMPORT_VAR
#endif #endif
#ifdef WIN32 #ifdef _WIN32
#define DV_ALIGNED(val) __declspec(align(val)) #define DV_ALIGNED(val) __declspec(align(val))
#else #else
#define DV_ALIGNED(val) __attribute__((aligned(val))) #define DV_ALIGNED(val) __attribute__((aligned(val)))

View file

@ -19,7 +19,7 @@
//------------------------------------------------------------------- //-------------------------------------------------------------------
class TData; class TData;
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TData>; template class DVAPI TSmartPointerT<TData>;
#endif #endif
@ -55,7 +55,7 @@ public:
//------------------------------------------------------------------- //-------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
#pragma warning(push) #pragma warning(push)
#pragma warning(disable : 4251) #pragma warning(disable : 4251)
#endif #endif
@ -72,7 +72,7 @@ public:
TFilePath getFilePath(int i) const; TFilePath getFilePath(int i) const;
}; };
#ifdef WIN32 #ifdef _WIN32
#pragma warning(pop) #pragma warning(pop)
#endif #endif

View file

@ -40,7 +40,7 @@ class Grammar;
class CalculatorNodeVisitor; class CalculatorNodeVisitor;
} }
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TPersistDeclarationT<TDoubleParam>; template class DVAPI TPersistDeclarationT<TDoubleParam>;
#endif #endif

View file

@ -18,7 +18,7 @@ class TFilePath;
#undef TFARMAPI #undef TFARMAPI
#endif #endif
#ifdef WIN32 #ifdef _WIN32
#ifdef TFARM_EXPORTS #ifdef TFARM_EXPORTS
#define TFARMAPI __declspec(dllexport) #define TFARMAPI __declspec(dllexport)
#else #else

View file

@ -15,7 +15,7 @@
#undef TFARMAPI #undef TFARMAPI
#endif #endif
#ifdef WIN32 #ifdef _WIN32
#ifdef TFARM_EXPORTS #ifdef TFARM_EXPORTS
#define TFARMAPI __declspec(dllexport) #define TFARMAPI __declspec(dllexport)
#else #else

View file

@ -12,7 +12,7 @@
#undef TFARMAPI #undef TFARMAPI
#endif #endif
#ifdef WIN32 #ifdef _WIN32
#ifdef TFARM_EXPORTS #ifdef TFARM_EXPORTS
#define TFARMAPI __declspec(dllexport) #define TFARMAPI __declspec(dllexport)
#else #else

View file

@ -54,7 +54,7 @@ private:
friend class TFontManager; friend class TFontManager;
Impl *m_pimpl; Impl *m_pimpl;
#ifdef WIN32 #ifdef _WIN32
TFont(const LOGFONTW &, HDC hdc); TFont(const LOGFONTW &, HDC hdc);
#else #else
TFont(ATSUFontID, int size); TFont(ATSUFontID, int size);

View file

@ -361,7 +361,7 @@ public:
//=================================================================== //===================================================================
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TFx>; template class DVAPI TSmartPointerT<TFx>;
#endif #endif
typedef TSmartPointerT<TFx> TFxP; typedef TSmartPointerT<TFx> TFxP;

View file

@ -105,7 +105,7 @@ inline ostream &operator<<(ostream &out, const TPointT<T> &p)
typedef TPointT<int> TPoint, TPointI; typedef TPointT<int> TPoint, TPointI;
typedef TPointT<double> TPointD; typedef TPointT<double> TPointD;
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TPointT<int>; template class DVAPI TPointT<int>;
template class DVAPI TPointT<double>; template class DVAPI TPointT<double>;
#endif #endif
@ -330,7 +330,7 @@ inline ostream &operator<<(ostream &out, const T3DPointT<T> &p)
typedef T3DPointT<int> T3DPoint, T3DPointI; typedef T3DPointT<int> T3DPoint, T3DPointI;
typedef T3DPointT<double> T3DPointD; typedef T3DPointT<double> T3DPointD;
#ifdef WIN32 #ifdef _WIN32
template class DVAPI T3DPointT<int>; template class DVAPI T3DPointT<int>;
template class DVAPI T3DPointT<double>; template class DVAPI T3DPointT<double>;
#endif #endif
@ -618,7 +618,7 @@ inline ostream &operator<<(ostream &out, const TDimensionT<T> &p)
return out << "(" << p.lx << ", " << p.ly << ")"; return out << "(" << p.lx << ", " << p.ly << ")";
} }
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TDimensionT<int>; template class DVAPI TDimensionT<int>;
template class DVAPI TDimensionT<double>; template class DVAPI TDimensionT<double>;
#endif #endif
@ -786,7 +786,7 @@ public:
typedef TRectT<int> TRect, TRectI; typedef TRectT<int> TRect, TRectI;
typedef TRectT<double> TRectD; typedef TRectT<double> TRectD;
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TRectT<int>; template class DVAPI TRectT<int>;
template class DVAPI TRectT<double>; template class DVAPI TRectT<double>;
#endif #endif

View file

@ -6,7 +6,7 @@
//#include "tgeometry.h" //#include "tgeometry.h"
#include "tmachine.h" #include "tmachine.h"
#ifdef WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
//#endif //#endif
@ -247,7 +247,7 @@ void DVAPI tglBuildMipmaps(std::vector<TRaster32P> &rasters,
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
typedef std::pair<HDC, HGLRC> TGlContext; typedef std::pair<HDC, HGLRC> TGlContext;
#else #else
typedef void *TGlContext; typedef void *TGlContext;

View file

@ -86,7 +86,7 @@ private:
//------------------------------------------------------------------- //-------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TImage>; template class DVAPI TSmartPointerT<TImage>;
#endif #endif

View file

@ -181,7 +181,7 @@ public:
//----------------------------------------------------------- //-----------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TImageReader>; template class DVAPI TSmartPointerT<TImageReader>;
#endif #endif
@ -248,7 +248,7 @@ public:
//----------------------------------------------------------- //-----------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TImageWriter>; template class DVAPI TSmartPointerT<TImageWriter>;
#endif #endif

View file

@ -169,7 +169,7 @@ public:
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TCachedImage>; template class DVAPI TSmartPointerT<TCachedImage>;
#endif #endif

View file

@ -72,7 +72,7 @@ public:
//------------------------------------------------------------------- //-------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TLevel>; template class DVAPI TSmartPointerT<TLevel>;
#endif #endif

View file

@ -7,7 +7,7 @@
#include "timage_io.h" #include "timage_io.h"
#include "tproperty.h" #include "tproperty.h"
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4290) #pragma warning(disable : 4290)
#pragma warning(disable : 4251) #pragma warning(disable : 4251)
@ -113,7 +113,7 @@ private:
//----------------------------------------------------------- //-----------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TLevelReader>; template class DVAPI TSmartPointerT<TLevelReader>;
#endif #endif
@ -221,7 +221,7 @@ public:
//----------------------------------------------------------- //-----------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TLevelWriter>; template class DVAPI TSmartPointerT<TLevelWriter>;
#endif #endif

View file

@ -15,7 +15,7 @@
#define DVVAR DV_IMPORT_VAR #define DVVAR DV_IMPORT_VAR
#endif #endif
#ifdef WIN32 #ifdef _WIN32
#pragma warning(disable : 4251) #pragma warning(disable : 4251)
#endif #endif

View file

@ -145,7 +145,7 @@ public:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TTextureMesh>; template class DVAPI TSmartPointerT<TTextureMesh>;
#endif #endif
@ -204,7 +204,7 @@ public:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TSmartPointerT<TMeshImage>; template class DVAPI TSmartPointerT<TMeshImage>;
template class DVAPI TDerivedSmartPointerT<TMeshImage, TImage>; template class DVAPI TDerivedSmartPointerT<TMeshImage, TImage>;
#endif #endif
@ -215,7 +215,7 @@ public:
TMeshImageP() {} TMeshImageP() {}
TMeshImageP(TMeshImage *image) : DerivedSmartPointer(image) {} TMeshImageP(TMeshImage *image) : DerivedSmartPointer(image) {}
TMeshImageP(TImageP image) : DerivedSmartPointer(image) {} TMeshImageP(TImageP image) : DerivedSmartPointer(image) {}
#if !defined(WIN32) #if !defined(_WIN32)
TMeshImageP(TImage *image) : DerivedSmartPointer(TImageP(image)) TMeshImageP(TImage *image) : DerivedSmartPointer(TImageP(image))
{ {
} }

View file

@ -26,7 +26,7 @@
// TNotAnimatableParamChange // TNotAnimatableParamChange
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
#pragma warning(push) #pragma warning(push)
#pragma warning(disable : 4251) #pragma warning(disable : 4251)
#endif #endif
@ -185,7 +185,7 @@ public:
// //
//========================================================= //=========================================================
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TNotAnimatableParam<int>; template class DVAPI TNotAnimatableParam<int>;
class TIntParam; class TIntParam;
template class DVAPI TPersistDeclarationT<TIntParam>; template class DVAPI TPersistDeclarationT<TIntParam>;
@ -220,7 +220,7 @@ DEFINE_PARAM_SMARTPOINTER(TIntParam, int)
// //
//========================================================= //=========================================================
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TNotAnimatableParam<bool>; template class DVAPI TNotAnimatableParam<bool>;
class TBoolParam; class TBoolParam;
template class DVAPI TPersistDeclarationT<TBoolParam>; template class DVAPI TPersistDeclarationT<TBoolParam>;
@ -248,7 +248,7 @@ DEFINE_PARAM_SMARTPOINTER(TBoolParam, bool)
// //
//========================================================= //=========================================================
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TNotAnimatableParam<TFilePath>; template class DVAPI TNotAnimatableParam<TFilePath>;
class TFilePathParam; class TFilePathParam;
template class DVAPI TPersistDeclarationT<TFilePathParam>; template class DVAPI TPersistDeclarationT<TFilePathParam>;
@ -274,7 +274,7 @@ DEFINE_PARAM_SMARTPOINTER(TFilePathParam, TFilePath)
// //
//========================================================= //=========================================================
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TNotAnimatableParam<std::wstring>; template class DVAPI TNotAnimatableParam<std::wstring>;
class TStringParam; class TStringParam;
template class DVAPI TPersistDeclarationT<TStringParam>; template class DVAPI TPersistDeclarationT<TStringParam>;
@ -358,7 +358,7 @@ public:
// //
//========================================================= //=========================================================
#ifdef WIN32 #ifdef _WIN32
template class DVAPI TNotAnimatableParam<double>; template class DVAPI TNotAnimatableParam<double>;
class TNADoubleParam; class TNADoubleParam;
template class DVAPI TPersistDeclarationT<TNADoubleParam>; template class DVAPI TPersistDeclarationT<TNADoubleParam>;
@ -457,7 +457,7 @@ TUndo *TNotAnimatableParamChange<T>::createUndo() const
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#ifdef WIN32 #ifdef _WIN32
#pragma warning(pop) #pragma warning(pop)
#endif #endif

View file

@ -3,7 +3,7 @@
#ifndef TNZTYPES_H #ifndef TNZTYPES_H
#define TNZTYPES_H #define TNZTYPES_H
#ifdef WIN32 #ifdef _WIN32
#define TINT32 __int32 #define TINT32 __int32
typedef unsigned __int32 TUINT32; typedef unsigned __int32 TUINT32;
typedef __int64 TINT64; typedef __int64 TINT64;

Some files were not shown because too many files have changed in this diff Show more