summaryrefslogtreecommitdiff
path: root/new/entry_windows.c
diff options
context:
space:
mode:
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);
+}