gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog gui/Player.h libbase/curl_adapt...


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog gui/Player.h libbase/curl_adapt...
Date: Fri, 29 Sep 2006 04:19:34 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  06/09/29 04:19:34

Modified files:
        .              : ChangeLog 
        gui            : Player.h 
        libbase        : curl_adapter.h 
        server         : action.h as_value.h gnash.h movie_root.h 
        server/asobj   : Key.h 

Log message:
        Added DSOEXPORT.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.959&r2=1.960
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/Player.h?cvsroot=gnash&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/curl_adapter.h?cvsroot=gnash&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/gnash/server/action.h?cvsroot=gnash&r1=1.43&r2=1.44
http://cvs.savannah.gnu.org/viewcvs/gnash/server/as_value.h?cvsroot=gnash&r1=1.11&r2=1.12
http://cvs.savannah.gnu.org/viewcvs/gnash/server/gnash.h?cvsroot=gnash&r1=1.53&r2=1.54
http://cvs.savannah.gnu.org/viewcvs/gnash/server/movie_root.h?cvsroot=gnash&r1=1.12&r2=1.13
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/Key.h?cvsroot=gnash&r1=1.4&r2=1.5

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.959
retrieving revision 1.960
diff -u -b -r1.959 -r1.960
--- ChangeLog   29 Sep 2006 01:39:51 -0000      1.959
+++ ChangeLog   29 Sep 2006 04:19:33 -0000      1.960
@@ -1,5 +1,8 @@
 2006-09-29 Markus Gothe <address@hidden>
 
+       * gui/Player.h, server/action.h, server/as_value.h, server/asobj/Key.h,
+         server/movie_root.h, server/gnash.h, libbase/curl_adapter.h: 
+         Added DSOEXPORT.
        * libbase/triangulate_impl.h: %zd -> %lu.
        * libamf/amf.h: comma at end of enumerator list.
        * server/parser/action_buffer.cpp, server/ActionExec.cpp,

Index: gui/Player.h
===================================================================
RCS file: /sources/gnash/gnash/gui/Player.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- gui/Player.h        27 Sep 2006 12:52:15 -0000      1.2
+++ gui/Player.h        29 Sep 2006 04:19:33 -0000      1.3
@@ -42,7 +42,7 @@
 #include "config.h"
 #endif
 
-//#include "tu_config.h" // do we need this ??
+#include "tu_config.h"
 
 #include "gnash.h"
 
@@ -64,7 +64,7 @@
 /// from the plugin so we can set callback for getUrl and fs_commands
 /// w/out the need of using FIFOs or sockets or whatever else.
 ///
-class Player
+class DSOEXPORT Player
 {
 public:
 

Index: libbase/curl_adapter.h
===================================================================
RCS file: /sources/gnash/gnash/libbase/curl_adapter.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- libbase/curl_adapter.h      7 Jun 2006 04:28:46 -0000       1.2
+++ libbase/curl_adapter.h      29 Sep 2006 04:19:34 -0000      1.3
@@ -35,6 +35,7 @@
 // 
 //
 
+/* $Id: curl_adapter.h,v 1.3 2006/09/29 04:19:34 nihilus Exp $ */
 
 #ifndef CURL_ADAPTER_H
 #define CURL_ADAPTER_H
@@ -57,7 +58,7 @@
 //
 /// The caller owns the returned tu_file*.  
 ///
-tu_file* make_stream(const char* url);
+DSOEXPORT tu_file* make_stream(const char* url);
 
 }
 

Index: server/action.h
===================================================================
RCS file: /sources/gnash/gnash/server/action.h,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -b -r1.43 -r1.44
--- server/action.h     15 Sep 2006 00:22:43 -0000      1.43
+++ server/action.h     29 Sep 2006 04:19:34 -0000      1.44
@@ -74,7 +74,7 @@
        //
 
        /// For keyDown and stuff like that.
-       class DSOLOCAL event_id
+       class DSOEXPORT event_id
        {
        public:
                /// These must match the function names in 
event_id::get_function_name()
@@ -197,7 +197,7 @@
        //
 
        /// Create/hook built-ins.
-       void    action_init();
+       DSOEXPORT void  action_init();
 
        // Clean up any stray heap stuff we've allocated.
        void    action_clear();
@@ -224,7 +224,7 @@
        /// indices.  E.g. if first_arg_bottom_index = 7, then arg1 is
        /// at env->bottom(7), arg2 is at env->bottom(6), etc.
        ///
-       as_value call_method(const as_value& method, as_environment* env,
+       DSOEXPORT as_value call_method(const as_value& method, as_environment* 
env,
                as_object* this_ptr, // this is ourself
                int nargs, int first_arg_bottom_index);
 

Index: server/as_value.h
===================================================================
RCS file: /sources/gnash/gnash/server/as_value.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- server/as_value.h   18 Sep 2006 11:51:23 -0000      1.11
+++ server/as_value.h   29 Sep 2006 04:19:34 -0000      1.12
@@ -35,6 +35,8 @@
 // 
 //
 
+/* $Id: as_value.h,v 1.12 2006/09/29 04:19:34 nihilus Exp $ */
+
 #ifndef GNASH_AS_VALUE_H
 #define GNASH_AS_VALUE_H
 
@@ -45,6 +47,7 @@
 #include <cmath>
 
 #include "container.h"
+#include "tu_config.h"
 //#include "resource.h" // for inheritance of as_object
 #include "smart_ptr.h"
 
@@ -82,8 +85,10 @@
  
 typedef void (*as_c_function_ptr)(const fn_call& fn);
 
-/// ActionScript value type.
-class as_value
+// ActionScript value type.
+
+//No private: ???
+class DSOEXPORT as_value
 {
 public:
        enum type

Index: server/gnash.h
===================================================================
RCS file: /sources/gnash/gnash/server/gnash.h,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -b -r1.53 -r1.54
--- server/gnash.h      28 Sep 2006 08:00:23 -0000      1.53
+++ server/gnash.h      29 Sep 2006 04:19:34 -0000      1.54
@@ -35,6 +35,8 @@
 // 
 //
 
+/* $Id: gnash.h,v 1.54 2006/09/29 04:19:34 nihilus Exp $ */
+
 /// \mainpage
 ///
 ///  See Related Pages for movies and sprites informations
@@ -569,7 +571,7 @@
 //
 
 
-class point
+class DSOLOCAL point
 {
 public:
        float   m_x, m_y;
@@ -595,7 +597,7 @@
 //
 
 
-class rect
+class DSOLOCAL rect
 {
 public:
        float   m_x_min, m_x_max, m_y_min, m_y_max;
@@ -790,14 +792,14 @@
 
 /// Key events are global throughout gnash.
 /// @@ Maybe someday make these local to the movie_interface?
-void   notify_key_event(key::code k, bool down);
+DSOEXPORT void notify_key_event(key::code k, bool down);
 
 
 /// Some optional helpers.
 namespace tools
 {
 
-class process_options
+class DSOLOCAL process_options
 {
 public:
        /// @@ not implemented yet (low priority?)

Index: server/movie_root.h
===================================================================
RCS file: /sources/gnash/gnash/server/movie_root.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- server/movie_root.h 26 Aug 2006 22:58:12 -0000      1.12
+++ server/movie_root.h 29 Sep 2006 04:19:34 -0000      1.13
@@ -35,6 +35,8 @@
 // 
 //
 
+/* $Id: movie_root.h,v 1.13 2006/09/29 04:19:34 nihilus Exp $ */
+
 #ifndef GNASH_MOVIE_ROOT_H
 #define GNASH_MOVIE_ROOT_H
 
@@ -46,6 +48,7 @@
 #include "jpeg.h"
 #include "tu_file.h"
 #include "movie_def_impl.h"
+#include "tu_config.h"
 #include "sprite_instance.h" // for inlines
 
 namespace gnash
@@ -273,7 +276,7 @@
                        callback, user_ptr);
        }
 
-       void notify_keypress_listeners(key::code k);
+       DSOEXPORT void notify_keypress_listeners(key::code k);
        void add_keypress_listener(as_object* listener);
        void remove_keypress_listener(as_object* listener);
 

Index: server/asobj/Key.h
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/Key.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- server/asobj/Key.h  26 Sep 2006 21:17:04 -0000      1.4
+++ server/asobj/Key.h  29 Sep 2006 04:19:34 -0000      1.5
@@ -36,7 +36,7 @@
 // exception also makes it possible to release a modified version which
 // carries forward this exception.
 
-/* $Id: Key.h,v 1.4 2006/09/26 21:17:04 nihilus Exp $ */
+/* $Id: Key.h,v 1.5 2006/09/29 04:19:34 nihilus Exp $ */
 
 #ifndef __KEY_H__
 #define __KEY_H__
@@ -45,6 +45,7 @@
 #include "config.h"
 #endif
 
+#include "tu_config.h"
 #include "impl.h"
 //#include "as_object.h" // for inheritance
 
@@ -56,7 +57,7 @@
 
 namespace gnash {
   
-class Key {
+class DSOEXPORT Key {
 public:
     Key();
     ~Key();
@@ -109,7 +110,7 @@
  *
  ************************************************************************/
 
-class key_as_object : public as_object
+class DSOEXPORT key_as_object : public as_object
 {
 
 private:




reply via email to

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