win32 port: parseToPOD NEED_LONGLONG check, missing monitor.cpp

This commit is contained in:
Matej Sekoranja
2013-11-27 01:15:35 +01:00
parent 301038664e
commit 8aa26b78bb
2 changed files with 15 additions and 2 deletions

View File

@@ -14,8 +14,7 @@
#include "typeCast.h"
// need to use "long long" when sizeof(int)==sizeof(long)
//#if ULONG_MAX == 0xfffffffful
#if ULONG_MAX != UINT_MAX
#if (ULONG_MAX == 0xfffffffful) || defined(_WIN32)
#define NEED_LONGLONG
#endif

View File

@@ -0,0 +1,14 @@
/*monitor.cpp*/
/**
* Copyright - See the COPYRIGHT that is included with this distribution.
* EPICS pvData is distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
*/
/**
* @author mse
*/
#define epicsExportSharedSymbols
// needed to get interfaces exported
#include <pv/monitor.h>