commit | 6d4f63e73f6604a268be794d584f7f206300be74 | [log] [tgz] |
---|---|---|
author | Rob Shearman <rob@codeweavers.com> | Mon Mar 19 14:56:39 2007 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Mar 20 12:56:41 2007 +0100 |
tree | 2b3ab8fd6d16996aa01dd3318dc1a261fa922fa9 | |
parent | 251bab8ac9909c2dcf4447918dfcd58349f95ded [diff] [blame] |
include: Fix the byte-order in the definition of the USER_MARSHAL_CB_SIGNATURE macro.
diff --git a/include/rpcndr.h b/include/rpcndr.h index 2c28020..8feab23 100644 --- a/include/rpcndr.h +++ b/include/rpcndr.h
@@ -274,8 +274,8 @@ /* '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 {