Пример #1
0
 public static extern int nk_button_image_label_styled(
     nk_context *ctx,
     nk_style_button *bstyle,
     nk_image img,
     byte *s,
     uint text_alignment_nkflags
     );
Пример #2
0
 public static extern int nk_button_symbol_label_styled(
     nk_context *ctx,
     nk_style_button *bstyle,
     nk_symbol_type stype,
     byte *title,
     uint align_nkflags
     );
Пример #3
0
 public static extern int nk_button_symbol_text_styled(
     nk_context *ctx,
     nk_style_button *bstyle,
     nk_symbol_type stype,
     byte *s,
     int i,
     uint alignment_nkflags
     );
Пример #4
0
 public static extern int nk_button_image_styled(nk_context *ctx, nk_style_button *bstyle, nk_image img);
Пример #5
0
 public static extern int nk_button_symbol_styled(nk_context *ctx, nk_style_button *bstyle, nk_symbol_type stype);
Пример #6
0
 public static extern int nk_button_label_styled(nk_context *ctx, nk_style_button *bstyle, byte *title);
Пример #7
0
 public static extern int nk_button_text_styled(nk_context *ctx, nk_style_button *bstyle, byte *title, int len);