summaryrefslogtreecommitdiffstats
path: root/src/emu/debug/textbuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/textbuf.h')
-rw-r--r--src/emu/debug/textbuf.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/debug/textbuf.h b/src/emu/debug/textbuf.h
index c30ff63d6de..e9b65c503a7 100644
--- a/src/emu/debug/textbuf.h
+++ b/src/emu/debug/textbuf.h
@@ -25,7 +25,7 @@ struct text_buffer;
***************************************************************************/
/* allocate a new text buffer */
-text_buffer *text_buffer_alloc(UINT32 bytes, UINT32 lines);
+text_buffer *text_buffer_alloc(uint32_t bytes, uint32_t lines);
/* free a text buffer */
void text_buffer_free(text_buffer *text);
@@ -40,16 +40,16 @@ void text_buffer_print(text_buffer *text, const char *data);
void text_buffer_print_wrap(text_buffer *text, const char *data, int wrapcol);
/* get the maximum width of lines seen so far */
-UINT32 text_buffer_max_width(text_buffer *text);
+uint32_t text_buffer_max_width(text_buffer *text);
/* get the current number of lines in the buffer */
-UINT32 text_buffer_num_lines(text_buffer *text);
+uint32_t text_buffer_num_lines(text_buffer *text);
/* get an absolute sequence number for a given line */
-UINT32 text_buffer_line_index_to_seqnum(text_buffer *text, UINT32 index);
+uint32_t text_buffer_line_index_to_seqnum(text_buffer *text, uint32_t index);
/* get a sequenced line from the text buffer */
-const char *text_buffer_get_seqnum_line(text_buffer *text, UINT32 seqnum);
+const char *text_buffer_get_seqnum_line(text_buffer *text, uint32_t seqnum);
#endif /* __TEXTBUF_H__ */