예제 #1
0
 public static extern void nk_str_init_fixed(nk_str *str, IntPtr memory, IntPtr size);
예제 #2
0
 public static char *nk_str_at_const(nk_str *str, int pos, uint *unicode, int *len) => _nk_str_at_const(str, pos, unicode, len);
예제 #3
0
 public static int nk_str_len(nk_str *str) => _nk_str_len(str);
예제 #4
0
 public static byte *nk_str_at_char(nk_str *str, int pos) => _nk_str_at_char(str, pos);
예제 #5
0
 public static uint nk_str_rune_at(nk_str *str, int pos) => _nk_str_rune_at(str, pos);
예제 #6
0
 public static int nk_str_insert_text_runes(nk_str *str, int pos, uint *runes, int slen) => _nk_str_insert_text_runes(str, pos, runes, slen);
예제 #7
0
 public static void nk_str_remove_runes(nk_str *str, int len) => _nk_str_remove_runes(str, len);
예제 #8
0
 public static void nk_str_init_fixed(nk_str *str, IntPtr memory, IntPtr size) => _nk_str_init_fixed(str, memory, size);
예제 #9
0
 public static void nk_str_clear(nk_str *str) => _nk_str_clear(str);
예제 #10
0
 public static extern int nk_str_append_str_char(nk_str *str, byte *s);
예제 #11
0
 public static void nk_str_init(nk_str *str, nk_allocator *allocator, IntPtr size) => _nk_str_init(str, allocator, size);
예제 #12
0
 public static extern int nk_str_append_text_char(nk_str *str, byte *s, int slen);
예제 #13
0
 public static extern void nk_str_free(nk_str *str);
예제 #14
0
 public static extern void nk_str_clear(nk_str *str);
예제 #15
0
 public static int nk_str_insert_text_utf8(nk_str *str, int pos, byte *s, int slen) => _nk_str_insert_text_utf8(str, pos, s, slen);
예제 #16
0
 public static void nk_str_free(nk_str *str) => _nk_str_free(str);
예제 #17
0
 public static int nk_str_insert_str_utf8(nk_str *str, int pos, byte *s) => _nk_str_insert_str_utf8(str, pos, s);
예제 #18
0
 public static int nk_str_append_str_char(nk_str *str, byte *s) => _nk_str_append_str_char(str, s);
예제 #19
0
 public static int nk_str_insert_str_runes(nk_str *str, int pos, uint *runes) => _nk_str_insert_str_runes(str, pos, runes);
예제 #20
0
 public static int nk_str_append_text_utf8(nk_str *str, byte *s, int slen) => _nk_str_append_text_utf8(str, s, slen);
예제 #21
0
 public static void nk_str_delete_runes(nk_str *str, int pos, int len) => _nk_str_delete_runes(str, pos, len);
예제 #22
0
 public static int nk_str_append_str_utf8(nk_str *str, byte *s) => _nk_str_append_str_utf8(str, s);
예제 #23
0
 public static byte *nk_str_at_rune(nk_str *str, int pos, uint *unicode, int *len) => _nk_str_at_rune(str, pos, unicode, len);
예제 #24
0
 public static int nk_str_append_text_runes(nk_str *str, uint *runes, int len) => _nk_str_append_text_runes(str, runes, len);
예제 #25
0
 public static char *nk_str_at_char_const(nk_str *str, int pos) => _nk_str_at_char_const(str, pos);
예제 #26
0
 public static int nk_str_append_str_runes(nk_str *str, uint *runes) => _nk_str_append_str_runes(str, runes);
예제 #27
0
 public static char *nk_str_get_const(nk_str *str) => _nk_str_get_const(str);
예제 #28
0
 public static int nk_str_insert_at_rune(nk_str *str, int pos, byte *s, int slen) => _nk_str_insert_at_rune(str, pos, s, slen);
예제 #29
0
 public static int nk_str_len_char(nk_str *str) => _nk_str_len_char(str);
예제 #30
0
 public static extern void nk_str_init(nk_str *str, nk_allocator *allocator, IntPtr size);