Skip to content
Snippets Groups Projects
Commit 2a0f280a authored by Philippe Canal's avatar Philippe Canal
Browse files

From Axel: enable explicit export

git-svn-id: http://root.cern.ch/svn/root/trunk@15429 27541ba8-7e3a-0410-8455-c3a389f83636
parent 0406b15e
No related branches found
No related tags found
No related merge requests found
/* @(#)root/base:$Name$:$Id$ */
/* @(#)root/base:$Name: $:$Id: DllImport.h,v 1.1.1.1 2000/05/16 17:00:39 rdm Exp $ */
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
......@@ -9,7 +9,7 @@
*************************************************************************/
/*
This include file defines DllImport/DllExport macro
This include file defines the DllImport macro
to build DLLs under Windows OS.
They are defined as dummy for UNIX's
......@@ -20,16 +20,11 @@
#ifndef __CINT__
#if defined(WIN32)
# define DllImport __declspec( dllimport )
# define R__DllImport __declspec( dllimport )
#else
# define DllImport
# define R__DllImport
#endif
#if defined(_DLL)
# define DllExport __declspec( dllexport )
#else
# define DllExport
#endif
# define R__EXTERN DllImport extern
# define R__EXTERN R__DllImport extern
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment