summaryrefslogtreecommitdiff
path: root/new/entry_windows.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-09 11:12:01 -0400
committerPietro Gagliardi <[email protected]>2015-04-09 11:12:01 -0400
commit79a7e18b8da55b4bcec72cc66f9b4e07878e7eee (patch)
tree1c3b3873576e80ee73cc8a6281cef5e0ef03b1be /new/entry_windows.c
parent1f18d88f565844436fb4487b596175ba48138c05 (diff)
Implemented the text functions on Windows.
Diffstat (limited to 'new/entry_windows.c')
-rw-r--r--new/entry_windows.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/new/entry_windows.c b/new/entry_windows.c
index b76d491..f147d5d 100644
--- a/new/entry_windows.c
+++ b/new/entry_windows.c
@@ -61,3 +61,13 @@ uiControl *uiNewEntry(void)
return e->c;
}
+
+char *uiEntryText(uiControl *c)
+{
+ return uiWindowsControlText(c);
+}
+
+void uiEntrySetText(uiControl *c, const char *text)
+{
+ uiWindowsControlSetText(c, text);
+}