diff options
author | jaortega <jaortega> | 2001-03-09 00:14:21 +0000 |
---|---|---|
committer | jaortega <jaortega> | 2001-03-09 00:14:21 +0000 |
commit | c532202e4d9c4707cc8708b50607f246f359aac3 (patch) | |
tree | 2293b67b3be8cc49eb0829ffede6c60468feee41 /mixlib/mix_types.h | |
parent | 13884bea299129048c1912510292d1207f520323 (diff) | |
download | mdk-c532202e4d9c4707cc8708b50607f246f359aac3.tar.gz mdk-c532202e4d9c4707cc8708b50607f246f359aac3.tar.bz2 |
partial gui functionality implemented
Diffstat (limited to 'mixlib/mix_types.h')
-rw-r--r-- | mixlib/mix_types.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mixlib/mix_types.h b/mixlib/mix_types.h index dae6ff8..918046e 100644 --- a/mixlib/mix_types.h +++ b/mixlib/mix_types.h @@ -25,7 +25,7 @@ #define MIX_TYPES_H #include <stdio.h> -#include <glib.h> +#include "mix.h" /* Initialisation function to be called before using the other * functions in this file @@ -219,6 +219,9 @@ mix_word_store_field(mix_fspec_t f, mix_word_t from, mix_word_t to); extern void mix_word_print_to_file (mix_word_t word, const char *message, FILE *f); +extern void +mix_word_print_to_buffer (mix_word_t word, gchar *buf); + /*----------------- mix_short_t ------------------------------------------*/ typedef guint16 mix_short_t; @@ -276,7 +279,8 @@ mix_short_add(mix_short_t x, mix_short_t y); extern void mix_short_print(mix_short_t s, const gchar *message); - +extern void +mix_short_print_to_buffer (mix_short_t s, gchar *buf); |