gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/rtmp r10081: Added DSOEXPORT-attribute


From: Markus Gothe
Subject: [Gnash-commit] /srv/bzr/gnash/rtmp r10081: Added DSOEXPORT-attribute
Date: Tue, 31 Mar 2009 02:53:35 +0200
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10081
committer: Markus Gothe <address@hidden>
branch nick: rtmp
timestamp: Tue 2009-03-31 02:53:35 +0200
message:
  Added DSOEXPORT-attribute
modified:
  cygnal/http_server.h
  cygnal/proc.h
  libnet/rtmp_client.h
=== modified file 'cygnal/http_server.h'
--- a/cygnal/http_server.h      2009-03-20 00:00:54 +0000
+++ b/cygnal/http_server.h      2009-03-31 00:53:35 +0000
@@ -103,7 +103,7 @@
 
 // This is the thread for all incoming HTTP connections
 extern "C" {
-    bool http_handler(gnash::Network::thread_params_t *args);
+    DSOEXPORT bool http_handler(gnash::Network::thread_params_t *args);
 }
 
 } // end of gnash namespace

=== modified file 'cygnal/proc.h'
--- a/cygnal/proc.h     2009-02-22 00:41:45 +0000
+++ b/cygnal/proc.h     2009-03-31 00:53:35 +0000
@@ -26,14 +26,15 @@
 #include <boost/thread/condition.hpp>
 
 #include "network.h"
+#include "dsodefs.h"
 
 namespace cygnal
 {
   
 class Proc : public gnash::Network {
 public:
-    Proc (void);
-    ~Proc (void);
+    DSOEXPORT Proc (void);
+    DSOEXPORT ~Proc (void);
     static Proc& getDefaultInstance();
     
     // These flags control whether the stdout of the child process gets 
displayed

=== modified file 'libnet/rtmp_client.h'
--- a/libnet/rtmp_client.h      2009-03-31 00:31:07 +0000
+++ b/libnet/rtmp_client.h      2009-03-31 00:53:35 +0000
@@ -53,10 +53,10 @@
                                    double audioCodecs, double videoCodecs, 
double videoFunction,
                                    const char *pageUrl);
     // Create the second object sent to the server, which is 
NetStream():;NetStream()
-    boost::shared_ptr<amf::Buffer> encodeStream(double id);
+    DSOEXPORT boost::shared_ptr<amf::Buffer> encodeStream(double id);
     boost::shared_ptr<amf::Buffer> encodeStreamOp(double id, rtmp_op_e op, 
bool flag);
     boost::shared_ptr<amf::Buffer> encodeStreamOp(double id, rtmp_op_e op, 
bool flag, double pos);
-    boost::shared_ptr<amf::Buffer> encodeStreamOp(double id, rtmp_op_e op, 
bool flag, const std::string &name);
+    DSOEXPORT boost::shared_ptr<amf::Buffer> encodeStreamOp(double id, 
rtmp_op_e op, bool flag, const std::string &name);
     boost::shared_ptr<amf::Buffer> encodeStreamOp(double id, rtmp_op_e op, 
bool flag, const std::string &name, double pos);
 
     bool isConnected() { return _connected; };


reply via email to

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