Rob Shearman : include: Fix the byte-order in the definition of the USER_MARSHAL_CB_SIGNATURE macro .
Module: wine Branch: master Commit: 6d4f63e73f6604a268be794d584f7f206300be74 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6d4f63e73f6604a268be794d58... Author: Rob Shearman <rob(a)codeweavers.com> Date: Mon Mar 19 14:56:39 2007 +0000 include: Fix the byte-order in the definition of the USER_MARSHAL_CB_SIGNATURE macro. --- include/rpcndr.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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 @@ 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 {
participants (1)
-
Alexandre Julliard