Ticket #51216: PPC_ppc.diff
File PPC_ppc.diff, 1.2 KB (added by ballapete (Peter "Pete" Dyballa), 9 years ago) |
---|
-
include/libEMF/wine/winnt.
old new 49 49 # define WORDS_BIGENDIAN 50 50 # define BITFIELDS_BIGENDIAN 51 51 # undef ALLOW_UNALIGNED_ACCESS 52 #elif defined(__PPC__) 52 #elif defined(__PPC__) || (__ppc__) 53 53 # define WORDS_BIGENDIAN 54 54 # define BITFIELDS_BIGENDIAN 55 55 # undef ALLOW_UNALIGNED_ACCESS … … 1102 1102 #endif /* _MIPS_ */ 1103 1103 1104 1104 /* PowerPC context definitions */ 1105 #if def __PPC__1105 #if defined(__PPC__) || (__ppc__) 1106 1106 1107 1107 #define CONTEXT_CONTROL 0x0001 1108 1108 #define CONTEXT_FLOATING_POINT 0x0002 … … 1223 1223 DWORD Parameter7; 1224 1224 } STACK_FRAME_HEADER,*PSTACK_FRAME_HEADER; 1225 1225 1226 #endif /* __PPC__ */1226 #endif /* __PPC__ || __ppc__ */ 1227 1227 1228 1228 #ifdef __sparc__ 1229 1229 … … 1570 1570 1571 1571 #endif /* __s390__ */ 1572 1572 1573 #if def __PPC__1573 #if defined(__PPC__) || (__ppc__) 1574 1574 1575 1575 /* FIXME: use getcontext() to retrieve full context */ 1576 1576 #define _GET_CONTEXT \ … … 1595 1595 void WINAPI name ( t1 a1, t2 a2, t3 a3, t4 a4 ) \ 1596 1596 { _GET_CONTEXT; fn( a1, a2, a3, a4, &context ); } 1597 1597 1598 #endif /* __PPC__ */1598 #endif /* __PPC__ || __ppc__ */ 1599 1599 1600 1600 1601 1601 #ifndef DEFINE_REGS_ENTRYPOINT_0