aboutsummaryrefslogtreecommitdiff
path: root/iPhone
diff options
context:
space:
mode:
Diffstat (limited to 'iPhone')
-rw-r--r--iPhone/GTMRoundedRectPath.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/iPhone/GTMRoundedRectPath.h b/iPhone/GTMRoundedRectPath.h
index 2b20fec..88bf4cc 100644
--- a/iPhone/GTMRoundedRectPath.h
+++ b/iPhone/GTMRoundedRectPath.h
@@ -18,18 +18,22 @@
#import <CoreGraphics/CoreGraphics.h>
-// Inscribe a round rectangle inside of rectangle |rect| with a corner radius
+#include "GTMDefines.h"
+
+GTM_EXTERN_C_BEGIN
+
+// Inscribe a round rectangle inside of rectangle |rect| with a corner radius
// of |radius|
//
// Args:
// rect: outer rectangle to inscribe into
// radius: radius of the corners. |radius| is clamped internally
// to be no larger than the smaller of half |rect|'s width or height
-void GTMCGContextAddRoundRect(CGContextRef context,
- CGRect rect,
+void GTMCGContextAddRoundRect(CGContextRef context,
+ CGRect rect,
CGFloat radius);
-// Adds a path which is a round rectangle inscribed inside of rectangle |rect|
+// Adds a path which is a round rectangle inscribed inside of rectangle |rect|
// with a corner radius of |radius|
//
// Args:
@@ -38,11 +42,13 @@ void GTMCGContextAddRoundRect(CGContextRef context,
// rect: outer rectangle to inscribe into
// radius: radius of the corners. |radius| is clamped internally
// to be no larger than the smaller of half |rect|'s width or height
-void GTMCGPathAddRoundRect(CGMutablePathRef path,
- const CGAffineTransform *m,
- CGRect rect,
+void GTMCGPathAddRoundRect(CGMutablePathRef path,
+ const CGAffineTransform *m,
+ CGRect rect,
CGFloat radius);
// Allocates a new rounded corner rectangle path.
// DEPRECATED. Please use one of the above.
CGPathRef GTMCreateRoundedRectPath(CGRect rect, CGFloat radius);
+
+GTM_EXTERN_C_END