diff options
author | jsorg71 <jsorg71> | 2007-09-23 07:27:18 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2007-09-23 07:27:18 +0000 |
commit | 719b13b38825d3439dbeb4ab7df24acbf0679ddc (patch) | |
tree | 97ae1052e8d0cd757965a2dd807adc3a4f8b3cef /xrdp/xrdp.h | |
parent | f4024fc9265661f33ec73dd7b6a56a169fce3855 (diff) | |
download | xrdp-proprietary-719b13b38825d3439dbeb4ab7df24acbf0679ddc.tar.gz xrdp-proprietary-719b13b38825d3439dbeb4ab7df24acbf0679ddc.zip |
unicode
Diffstat (limited to 'xrdp/xrdp.h')
-rw-r--r-- | xrdp/xrdp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index 63276ebb..c595c642 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -283,11 +283,13 @@ rect_contained_by(struct xrdp_rect* in1, int left, int top, int APP_CC check_bounds(struct xrdp_bitmap* b, int* x, int* y, int* cx, int* cy); int APP_CC -add_char_at(char* text, char ch, int index); +add_char_at(char* text, int text_size, twchar ch, int index); int APP_CC -remove_char_at(char* text, int index); +remove_char_at(char* text, int text_size, int index); int APP_CC set_string(char** in_str, const char* in); +int APP_CC +wchar_repeat(twchar* dest, int dest_size_in_wchars, twchar ch, int repeat); /* in lang.c */ int APP_CC |