Bug 486 - Modified stream structs to also be 32 bit wide.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2594 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2008-07-23 09:27:07 +00:00
parent ad5de3749f
commit 963c8372a3
1 changed files with 2 additions and 2 deletions

View File

@ -47,12 +47,12 @@ protected:
protected: protected:
typedef struct { typedef struct {
long msg_type; int msg_type;
char msg_data[16]; char msg_data[16];
} CmdMsg; } CmdMsg;
typedef struct { typedef struct {
long msg_type; int msg_type;
char msg_data[256]; char msg_data[256];
} DataMsg; } DataMsg;