summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon <simon@hardwired.org.uk>2011-03-24 21:18:58 (GMT)
committer Simon <simon@hardwired.org.uk>2011-03-24 21:18:58 (GMT)
commit6e1e81464e93831eb425db329fc3e6d97072abe1 (patch)
treef12bf3323df9b020e4c6b8729402b234c269acfe /src
parenta186714a7f49125f977767f2fc69350b914989c8 (diff)
downloadpowder-6e1e81464e93831eb425db329fc3e6d97072abe1.zip
powder-6e1e81464e93831eb425db329fc3e6d97072abe1.tar.gz
Add outline for clipboard pushing/pulling
Diffstat (limited to 'src')
-rw-r--r--src/misc.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/misc.c b/src/misc.c
index eb54dfb..bf77e48 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -369,5 +369,17 @@ vector2d v2d_new(float x, float y)
return result;
}
+void clipboard_push_text(char * text)
+{ß
+ printf("Not implemented: put text on clipboard \"%s\"", text);
+}
+
+char * clipboard_pull_text()
+{
+ printf("Not implemented: get text from clipboard");
+ return "";
+}
+
+
vector2d v2d_zero = {0,0};
matrix2d m2d_identity = {1,0,0,1};