Commit 6d4f63e7 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

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

parent 251bab8a
......@@ -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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment