0022972: Eliminate macro definitions that has compiler-provided analogs (WNT and...
[occt.git] / src / Blend / Blend_Debug.cxx
1 // Created on: 1994-10-03
2 // Created by: Laurent BOURESCHE
3 // Copyright (c) 1994-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <Standard_Boolean.hxx>
18
19 #ifndef __Blend_API
20 # if defined(_WIN32) && !defined(HAVE_NO_DLL)
21 #  ifdef __Blend_DLL
22 #   define __Blend_API __declspec( dllexport )
23 #  else
24 #   define __Blend_API __declspec( dllimport )
25 #  endif /*__Blend_DLL*/
26 # else
27 #  define __Blend_API
28 # endif /*_WIN32*/
29 #endif /*__Blend_API*/
30
31 //*************************************************
32 // recuperation des surfaces des conges approximes.
33 //*************************************************
34
35 static Standard_Boolean Blend_traceDRAWSECT = Standard_False;
36 __Blend_API extern void Blend_SettraceDRAWSECT(const Standard_Boolean b) 
37 { Blend_traceDRAWSECT = b; }
38 __Blend_API extern Standard_Boolean Blend_GettraceDRAWSECT() 
39 { return Blend_traceDRAWSECT; }
40
41 //*************************************************
42 // Contexte sans test de deflexion
43 //*************************************************
44
45 static Standard_Boolean Blend_contextNOTESTDEFL = Standard_False;
46 __Blend_API extern void Blend_SetcontextNOTESTDEFL(const Standard_Boolean b) 
47 { Blend_contextNOTESTDEFL = b; }
48 __Blend_API extern Standard_Boolean Blend_GetcontextNOTESTDEFL() 
49 { return Blend_contextNOTESTDEFL; }