Index: include/pathops/SkPathOps.h |
diff --git a/include/pathops/SkPathOps.h b/include/pathops/SkPathOps.h |
index bde77e8732d2b30b1919fcce183c9483076d416a..a98f4ea4d6d55f5d3b891c426d165bf8a79c6f05 100644 |
--- a/include/pathops/SkPathOps.h |
+++ b/include/pathops/SkPathOps.h |
@@ -7,6 +7,8 @@ |
#ifndef SkPathOps_DEFINED |
#define SkPathOps_DEFINED |
+#include "SkPreConfig.h" |
+ |
class SkPath; |
// FIXME: move everything below into the SkPath class |
@@ -36,7 +38,7 @@ enum SkPathOp { |
inputs. |
@return True if operation succeeded. |
*/ |
-bool Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result); |
+bool SK_API Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result); |
/** Set this path to a set of non-overlapping contours that describe the |
same area as the original path. |
@@ -50,6 +52,6 @@ bool Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result); |
@param result The simplified path. The result may be the input. |
@return True if simplification succeeded. |
*/ |
-bool Simplify(const SkPath& path, SkPath* result); |
+bool SK_API Simplify(const SkPath& path, SkPath* result); |
#endif |