gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash server/debugger.h ChangeLog


From: Markus Gothe
Subject: [Gnash-commit] gnash server/debugger.h ChangeLog
Date: Sun, 23 Mar 2008 02:06:16 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  08/03/23 02:06:16

Modified files:
        server         : debugger.h 
        .              : ChangeLog 

Log message:
        Added DSOEXPORT to definations.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/server/debugger.h?cvsroot=gnash&r1=1.18&r2=1.19
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6011&r2=1.6012

Patches:
Index: server/debugger.h
===================================================================
RCS file: /sources/gnash/gnash/server/debugger.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- server/debugger.h   5 Mar 2008 03:55:59 -0000       1.18
+++ server/debugger.h   23 Mar 2008 02:06:16 -0000      1.19
@@ -28,17 +28,18 @@
 #include <string>
 #include <map>
 
+#include "dsodefs.h"
 #include "as_environment.h"
 
 namespace gnash 
 {
 
-class DSOEXPORT Debugger {
+class Debugger {
 public:
-    Debugger();
-    ~Debugger();
+    DSOEXPORT Debugger();
+    DSOEXPORT ~Debugger();
     // Return the default instance of Debugger
-    static Debugger& getDefaultInstance();
+    DSOEXPORT static Debugger& getDefaultInstance();
 
     typedef enum {NONE, BREAK, CONTINUE, STOP} debug_state_e;
     typedef enum {BOTH, WRITES, READS} watch_state_e;
@@ -85,8 +86,8 @@
     void setFramePointer(const unsigned char *x) { _pc = x; };
     const unsigned char *getFramePointer() const { return _pc; };
 
-    void console(as_environment &env);
-    void console();
+    DSOEXPORT void console(as_environment &env);
+    DSOEXPORT void console();
     
     /// Are the debugger features enabled ?
     void enabled(bool x) { _enabled = x; };

Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6011
retrieving revision 1.6012
diff -u -b -r1.6011 -r1.6012
--- ChangeLog   23 Mar 2008 01:20:12 -0000      1.6011
+++ ChangeLog   23 Mar 2008 02:06:16 -0000      1.6012
@@ -1,7 +1,8 @@
 2008-03-23 Markus Gothe <address@hidden>
 
-       * libamf/lcshm.cpp: Fixed warning on uninitizilezed integer.
+       * libamf/lcshm.cpp: Fixed warning on uninitialized integer.
        * server/asobj/NetStreamFfmpeg.cpp: 'copied' is unsigned int.
+       * server/debugger.h: Added DSOEXPORT to definations.    
 
 2008-03-22  Dossy Shiobara <address@hidden>
 




reply via email to

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