~ubuntu-branches/ubuntu/quantal/mysql-workbench/quantal

« back to all changes in this revision

Viewing changes to plugins/wb.model.reporting/backend/wb_model_reporting_public_interface.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-03-01 21:57:30 UTC
  • Revision ID: package-import@ubuntu.com-20120301215730-o7y8av8y38n162ro
Tags: upstream-5.2.38+dfsg
ImportĀ upstreamĀ versionĀ 5.2.38+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _WB_MODEL_REPORTING_PUBLIC_INTERFACE_H_
 
2
#define _WB_MODEL_REPORTING_PUBLIC_INTERFACE_H_
 
3
 
 
4
#ifdef _WIN32
 
5
 
 
6
#ifdef WBPLUGINWBMODELREPORTINGBE_EXPORTS
 
7
#define WBPLUGINWBMODELREPORTINGBE_PUBLIC_FUNC __declspec(dllexport)
 
8
#else
 
9
#define WBPLUGINWBMODELREPORTINGBE_PUBLIC_FUNC __declspec(dllimport)
 
10
#endif
 
11
 
 
12
#else
 
13
#define WBPLUGINWBMODELREPORTINGBE_PUBLIC_FUNC
 
14
#endif
 
15
 
 
16
#endif // _WB_MODEL_REPORTING_PUBLIC_INTERFACE_H_
 
17