Skip to content

Commit

Permalink
Hunh. On a 64 bit mac, RunApplicationEventLoop is not defined in the …
Browse files Browse the repository at this point in the history
…header files (specifically turned off for 64 bit mode). However it is in the library and appears functional. I wonder what I'm supposed to use...
  • Loading branch information
George Williams committed Aug 14, 2012
1 parent 5226995 commit 4371784
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fontforge/startui.c
Expand Up @@ -39,6 +39,12 @@
# define FontInfo MacFontInfo
# define KernPair MacKernPair
# include </Developer/Headers/FlatCarbon/CarbonEvents.h>
/* For reasons obscure to me RunApplicationEventLoop is not defined in */
/* the mac header files if we are in 64 bit mode. Strangely it seems to */
/* be in the libraries and functional */
#if __LP64__
extern void RunApplicationEventLoop(void);
#endif
# undef FontInfo
# undef KernPair
#endif
Expand Down

0 comments on commit 4371784

Please sign in to comment.