use STRICT
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
#define VC_EXTRALEAN
|
||||
#define STRICT
|
||||
#include <winsock2.h>
|
||||
|
||||
#include "epicsVersion.h"
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#include <limits.h>
|
||||
|
||||
#define VC_EXTRALEAN
|
||||
#define _WIN32_WINNT 0x400 // currently not needed
|
||||
#define STRICT
|
||||
#include <windows.h>
|
||||
|
||||
#define epicsExportSharedSymbols
|
||||
|
||||
@@ -22,7 +22,20 @@
|
||||
#include <limits.h>
|
||||
|
||||
#define VC_EXTRALEAN
|
||||
#define _WIN32_WINNT 0x400
|
||||
#define STRICT
|
||||
/*
|
||||
* Defining this allows the *much* faster critical
|
||||
* section mutex primitive to be used. Unfortunately,
|
||||
* using certain of these functions drops support for W95
|
||||
* unless we specify "delay loading" when we link with the
|
||||
* DLL so that DLL entry points are not resolved until they
|
||||
* are used. The code does have run time switches so
|
||||
* that the more advanced calls are not called unless
|
||||
* they are available in the windows OS, but this feature
|
||||
* isnt going to be very useful unless we specify "delay
|
||||
* loading" when we link with the DLL
|
||||
*/
|
||||
#define _WIN32_WINNT 0x0400
|
||||
#include <windows.h>
|
||||
|
||||
#define epicsExportSharedSymbols
|
||||
|
||||
@@ -30,9 +30,9 @@
|
||||
* WIN32 specific
|
||||
*/
|
||||
#define VC_EXTRALEAN
|
||||
#define STRICT
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
#include <process.h>
|
||||
|
||||
/*
|
||||
* EPICS
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#define STRICT
|
||||
#include <windows.h>
|
||||
|
||||
#define epicsExportSharedSymbols
|
||||
|
||||
@@ -30,9 +30,8 @@
|
||||
* WIN32 specific
|
||||
*/
|
||||
#define VC_EXTRALEAN
|
||||
#define STRICT
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
#include <process.h>
|
||||
|
||||
#define epicsExportSharedSymbols
|
||||
#include "osiSock.h"
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
// WIN32
|
||||
//
|
||||
#define VC_EXTRALEAN
|
||||
#include <winsock2.h>
|
||||
#include <process.h>
|
||||
#define STRICT
|
||||
#include <windows.h>
|
||||
|
||||
//
|
||||
// EPICS
|
||||
|
||||
Reference in New Issue
Block a user