include: Fix the byte-order in the definition of the USER_MARSHAL_CB_SIGNATURE macro.

oldstable
Rob Shearman 2007-03-19 14:56:39 +00:00 committed by Alexandre Julliard
parent 251bab8ac9
commit 6d4f63e73f
1 changed files with 2 additions and 2 deletions

View File

@ -274,8 +274,8 @@ typedef struct _USER_MARSHAL_ROUTINE_QUADRUPLE
/* 'USRC' */
#define USER_MARSHAL_CB_SIGNATURE \
( (DWORD)'U' | ( (DWORD)'S' << 8 ) | \
( (DWORD)'R' << 16 ) | ( (DWORD)'C' << 24 ) )
( ( (DWORD)'U' << 24 ) | ( (DWORD)'S' << 16 ) | \
( (DWORD)'R' << 8 ) | ( (DWORD)'C' ) )
typedef enum
{