Go to the documentation of this file.
27# if defined STD_EXPORTS || defined std_EXPORTS
28# define STD_EXPORT __declspec( dllexport )
30# define STD_EXPORT __declspec( dllimport )
43#pragma warning ( disable: 4251 )
46#if defined ( _DEBUG ) || defined ( DEBUG )
48#define STD_VERIFY(x) (assert(x))
49#define STD_ASSERT(x) (assert(x))
51#define STD_VERIFY(x) (x)