Calling convention renamed

This commit is contained in:
Simon Rozman 2016-03-17 12:14:58 +01:00
parent 9eee909b21
commit c0dbc0caf2
3 changed files with 5 additions and 5 deletions

View File

@ -279,7 +279,7 @@ protected:
/// ///
/// Dockable application bar frame /// Dockable application bar frame
/// ///
class ZRCOLA_API wxAppBarFrame : public wxAppBar<wxFrame> class WXEXTEND_API wxAppBarFrame : public wxAppBar<wxFrame>
{ {
public: public:
wxAppBarFrame(); wxAppBarFrame();
@ -308,7 +308,7 @@ public:
/// ///
/// Dockable application bar dialog /// Dockable application bar dialog
/// ///
class ZRCOLA_API wxAppBarDialog : public wxAppBar<wxDialog> class WXEXTEND_API wxAppBarDialog : public wxAppBar<wxDialog>
{ {
public: public:
wxAppBarDialog(); wxAppBarDialog();

View File

@ -45,9 +45,9 @@
/// Public function calling convention /// Public function calling convention
/// ///
#ifdef WXEXTEND #ifdef WXEXTEND
#define ZRCOLA_API __declspec(dllexport) #define WXEXTEND_API __declspec(dllexport)
#else #else
#define ZRCOLA_API __declspec(dllimport) #define WXEXTEND_API __declspec(dllimport)
#endif #endif

View File

@ -25,7 +25,7 @@
/// ///
/// Create an object of this class on stack to initialize/cleanup the COM automatically. /// Create an object of this class on stack to initialize/cleanup the COM automatically.
/// ///
class ZRCOLA_API wxCoInitializer class WXEXTEND_API wxCoInitializer
{ {
public: public:
/// ///