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

« back to all changes in this revision

Viewing changes to modules/db.mysql.sqlide/src/db_mysql_sqlide_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 _DB_MYSQL_SQLIDE_PUBLIC_INTERFACE_H_
 
2
#define _DB_MYSQL_SQLIDE_PUBLIC_INTERFACE_H_
 
3
 
 
4
// STATIC_WB_MYSQL_WBM_IMPORT is used for tut tests, which
 
5
// links these classes statically
 
6
 
 
7
#if defined(_WIN32) && !defined(STATIC_WB_MODULE_IMPORT)
 
8
 
 
9
#ifdef DB_MYSQL_SQLIDE_EXPORTS
 
10
#define DB_MYSQL_SQLIDE_PUBLIC_FUNC __declspec(dllexport)
 
11
#else
 
12
#define DB_MYSQL_SQLIDE_PUBLIC_FUNC __declspec(dllimport)
 
13
#endif
 
14
 
 
15
#else
 
16
#define DB_MYSQL_SQLIDE_PUBLIC_FUNC
 
17
#endif
 
18
 
 
19
#endif // _DB_MYSQL_SQLIDE_PUBLIC_INTERFACE_H_
 
20