Ignore:
Timestamp:
May 1, 2006, 5:48:15 PM (19 years ago)
Author:
tomernic
Message:

Reviewed by Tim Hatcher.

<rdar://problem/4476875> Support printing for embedded Netscape plugins

  • bindings/npapi.h: Fixed struct alignment problem in our npapi.h. Structs must be 68k-aligned on both pre-Mac OS X and Mac OS X systems, as this is what plugins expect.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/bindings/npapi.h

    r13537 r14153  
    154154/*----------------------------------------------------------------------*/
    155155
    156 #ifdef XP_MAC
     156#if defined(XP_MAC) || defined(XP_MACOSX)
    157157#pragma options align=mac68k
    158158#endif
     
    446446#define NP_MAXREADY    (((unsigned)(~0)<<1)>>1)
    447447
    448 #ifdef XP_MAC
     448#if defined(XP_MAC) || defined(XP_MACOSX)
    449449#pragma options align=reset
    450450#endif
Note: See TracChangeset for help on using the changeset viewer.