aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/pathops/SkPathOps.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/pathops/SkPathOps.h')
-rw-r--r--include/pathops/SkPathOps.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/pathops/SkPathOps.h b/include/pathops/SkPathOps.h
index bde77e8732..a98f4ea4d6 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