gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r11510: Fix DSOEXPORT's for Cygnal


From: Markus Gothe
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r11510: Fix DSOEXPORT's for Cygnal
Date: Mon, 14 Sep 2009 02:37:36 +0200
User-agent: Bazaar (1.16.1)

------------------------------------------------------------
revno: 11510
committer: Markus Gothe <address@hidden>
branch nick: trunk
timestamp: Mon 2009-09-14 02:37:36 +0200
message:
  Fix DSOEXPORT's for Cygnal
modified:
  libbase/sharedlib.h
=== modified file 'libbase/sharedlib.h'
--- a/libbase/sharedlib.h       2009-08-24 23:26:42 +0000
+++ b/libbase/sharedlib.h       2009-09-14 00:37:36 +0000
@@ -26,6 +26,7 @@
 #include <string>
 #include <map>
 #include "as_object.h"
+#include "dsodefs.h" // DSOEXPORT
 
 #ifdef _WIN32
 #undef DLL_EXPORT
@@ -55,15 +56,15 @@
     
     SharedLib();
     SharedLib(const std::string& filespec);
-    SharedLib(const std::string& filespec, const std::string& envvar);
+    DSOEXPORT SharedLib(const std::string& filespec, const std::string& 
envvar);
     ~SharedLib();
 
-    bool openLib();
+    DSOEXPORT bool openLib();
     bool openLib(const std::string &filespec);
     
     // Get a C symbol from the shared library based on the name
     entrypoint *getDllSymbol (const std::string& symbol);
-    initentry *getInitEntry (const std::string& symbol);
+    DSOEXPORT initentry *getInitEntry (const std::string& symbol);
     
 private:
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]