From: YAMAMOTO Mitsuharu Date: Sat, 19 Apr 2008 01:24:57 +0000 (+0000) Subject: (CGFloat) [!CGFLOAT_DEFINED]: New typedef. X-Git-Tag: emacs-pretest-22.2.90~178 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=15364c8fb7286984e2b18e927f8957a63107129e;p=emacs.git (CGFloat) [!CGFLOAT_DEFINED]: New typedef. (mac_rect_make): New macro. --- diff --git a/src/macgui.h b/src/macgui.h index 1f4e454c714..c1558e98bfe 100644 --- a/src/macgui.h +++ b/src/macgui.h @@ -124,6 +124,10 @@ typedef unsigned long Time; #endif #endif +#ifndef CGFLOAT_DEFINED +typedef float CGFloat; +#endif + typedef WindowRef Window; #if TARGET_API_MAC_CARBON typedef ScrapRef Selection; @@ -147,6 +151,7 @@ typedef int Selection; #define mac_size_window SizeWindow #define mac_get_global_mouse GetGlobalMouse #define mac_is_window_toolbar_visible IsWindowToolbarVisible +#define mac_rect_make(f, x, y, w, h) CGRectMake (x, y, w, h) typedef GWorldPtr Pixmap; #define Cursor ThemeCursor