mirror of
https://github.com/gpac/gpac.git
synced 2026-01-12 00:05:22 +08:00
git-svn-id: http://svn.code.sf.net/p/gpac/code/trunk/gpac@5225 63c20433-aa62-49bd-875c-5a186b69a8fb
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
/*
|
|
* GPAC - Multimedia Framework C SDK
|
|
*
|
|
* Authors: Jean Le Feuvre
|
|
* Copyright (c) Telecom ParisTech 2000-2012
|
|
* All rights reserved
|
|
*
|
|
* This file is part of GPAC
|
|
*
|
|
* GPAC is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* GPAC is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*
|
|
*/
|
|
|
|
/*this file is only used with Win32&MSVC to export the module interface symbols from each module DLL*/
|
|
#include <gpac/setup.h>
|
|
|
|
#if defined(_WIN32_WCE) || defined(_WIN64)
|
|
#define EXPORT_SYMBOL(a) "/export:"#a
|
|
#else
|
|
#define EXPORT_SYMBOL(a) "/export:_"#a
|
|
#endif
|
|
|
|
#pragma comment (linker, EXPORT_SYMBOL(QueryInterfaces) )
|
|
#pragma comment (linker, EXPORT_SYMBOL(LoadInterface) )
|
|
#pragma comment (linker, EXPORT_SYMBOL(ShutdownInterface) )
|
|
|