gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/rtmp r10022: Cleaned up DSOEXPORTS


From: Markus Gothe
Subject: [Gnash-commit] /srv/bzr/gnash/rtmp r10022: Cleaned up DSOEXPORTS
Date: Mon, 23 Feb 2009 02:36:17 +0100
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10022
committer: Markus Gothe <address@hidden>
branch nick: rtmp
timestamp: Mon 2009-02-23 02:36:17 +0100
message:
  Cleaned up DSOEXPORTS
modified:
  libnet/http.h
=== modified file 'libnet/http.h'
--- a/libnet/http.h     2009-02-23 01:25:09 +0000
+++ b/libnet/http.h     2009-02-23 01:36:17 +0000
@@ -1,5 +1,5 @@
 // 
-//   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+//   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
 // 
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
@@ -231,7 +231,7 @@
     /// @param fd The file descriptor to read from
     ///
     /// @return The number of bytes sent
-    int DSOEXPORT recvMsg(int fd);
+    int recvMsg(int fd);
 
     /// \brief Send a message to the other end of the network connection.
     ///
@@ -248,7 +248,7 @@
     int sendMsg(const boost::uint8_t *data, size_t size);
     int sendMsg(boost::shared_ptr<amf::Buffer> &buf)
        { return sendMsg(buf->reference(), buf->size()); };
-    int DSOEXPORT sendMsg(std::stringstream &sstr)
+    int sendMsg(std::stringstream &sstr)
        { return sendMsg(reinterpret_cast<const boost::uint8_t 
*>(sstr.str().c_str()), sstr.str().size()); };
     
     // These accessors are used mostly just for debugging.
@@ -280,7 +280,7 @@
     boost::uint32_t     _filesize;
     std::map<int, struct status_codes *> _status_codes;
     
-    std::map<std::string, std::string> DSOEXPORT _fields;
+    std::map<std::string, std::string> _fields;
     http_version_t     _version;
     
     // Connection parameters we care about


reply via email to

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