track all declarations after statement for C90 compilers (VS2005)

This commit is contained in:
Mathieu Malaterre
2012-01-30 09:08:45 +00:00
parent aa00142949
commit 9c51a37dbf
5 changed files with 48 additions and 41 deletions

View File

@@ -34,12 +34,12 @@
#include "codestream_manager.h"
//! Marker parameters
/** Marker parameters*/
typedef struct marker_param{
codestream_param_t cs; //!< corresponding codestream
Byte2_t code; //!< marker code
Byte8_t offset; //!< offset relative to the start of the codestream ( including the length parameter but not the marker itself)
Byte2_t length; //!< marker segment length
codestream_param_t cs; /**< corresponding codestream*/
Byte2_t code; /**< marker code*/
Byte8_t offset; /**< offset relative to the start of the codestream ( including the length parameter but not the marker itself)*/
Byte2_t length; /**< marker segment length*/
} marker_param_t;