CVSROOT:        /cvsroot/gnash
Module name:    gnash
Changes by:     Udo Giacomozzi <udog>   07/08/28 12:39:12

Modified files:
        server         : stream.h 
        .              : ChangeLog 

Log message:
        server/stream.h: documented some functions

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/server/stream.h?cvsroot=gnash&r1=1.27&r2=1.28
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4135&r2=1.4136

Patches:
Index: server/stream.h
===================================================================
RCS file: /cvsroot/gnash/gnash/server/stream.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -b -r1.27 -r1.28
--- server/stream.h     27 Aug 2007 18:52:58 -0000      1.27
+++ server/stream.h     28 Aug 2007 12:39:12 -0000      1.28
@@ -79,12 +79,33 @@
                        // m_current_byte = 0; // this is not needed
                }
 
+               /// \brief
+               /// Read <count> bytes from the source stream and copy that 
data to <buf>.
+               /// Implicitely aligns to the next byte.
                unsigned read(char *buf, unsigned count);
+               
+               /// \brief
+               /// Read a aligned unsigned 8-bit value from the stream.        
        
                uint8_t  read_u8();
+
+               /// \brief
+               /// Read a aligned signed 8-bit value from the stream.          
                int8_t   read_s8();
+
+               /// \brief
+               /// Read a aligned unsigned 16-bit value from the stream.       
        
                uint16_t read_u16();
+
+               /// \brief
+               /// Read a aligned signed 16-bit value from the stream.         
                int16_t  read_s16();
+
+               /// \brief
+               /// Read a aligned unsigned 32-bit value from the stream.       
        
                uint32_t read_u32();
+
+               /// \brief
+               /// Read a aligned signed 32-bit value from the stream.         
                int32_t  read_s32();
 
                /// \brief

Index: ChangeLog
===================================================================
RCS file: /cvsroot/gnash/gnash/ChangeLog,v
retrieving revision 1.4135
retrieving revision 1.4136
diff -u -b -r1.4135 -r1.4136
--- ChangeLog   28 Aug 2007 12:01:29 -0000      1.4135
+++ ChangeLog   28 Aug 2007 12:39:12 -0000      1.4136
@@ -1,3 +1,7 @@
+2007-08-28 Udo Giacomozzi <[EMAIL PROTECTED]>
+
+       * server/stream.h: documented some functions
+       
 2007-08-28 Sandro Santilli <[EMAIL PROTECTED]>
 
        * server/swf/tag_loaders.cpp: remove all bug jpeg-related


_______________________________________________
Gnash-commit mailing list
Gnash-commit@gnu.org
http://lists.gnu.org/mailman/listinfo/gnash-commit

Reply via email to