diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-09 11:12:01 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-09 11:12:01 -0400 |
| commit | 79a7e18b8da55b4bcec72cc66f9b4e07878e7eee (patch) | |
| tree | 1c3b3873576e80ee73cc8a6281cef5e0ef03b1be /new/entry_windows.c | |
| parent | 1f18d88f565844436fb4487b596175ba48138c05 (diff) | |
Implemented the text functions on Windows.
Diffstat (limited to 'new/entry_windows.c')
| -rw-r--r-- | new/entry_windows.c | 10 |
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); +} |
