Mercurial > hg > octave-thorsten
changeset 14281:b4d7de953066
Export more required symbols [Win32].
* liboctave/regexp.h (class regexp): Decorate with OCTAVE_API
* src/graphics.h.in (gtk_manager::create_instance, gtk_manager::instance):
Decorate with OCTINTERP_API.
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Sun, 29 Jan 2012 12:53:05 +0000 |
parents | fd8b8f0f68b9 |
children | 2633baa831e2 |
files | liboctave/regexp.h src/graphics.h.in |
diffstat | 2 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/liboctave/regexp.h +++ b/liboctave/regexp.h @@ -33,7 +33,9 @@ #include "base-list.h" #include "str-vec.h" -class regexp +class +OCTAVE_API +regexp { public:
--- a/src/graphics.h.in +++ b/src/graphics.h.in @@ -2310,7 +2310,7 @@ ~gtk_manager (void) { } - static void create_instance (void); + OCTINTERP_API static void create_instance (void); static bool instance_ok (void) { @@ -2331,7 +2331,7 @@ static void cleanup_instance (void) { delete instance; instance = 0; } - static gtk_manager *instance; + OCTINTERP_API static gtk_manager *instance; // The name of the default toolkit. std::string dtk;