From 3a5d8cf6c1bbecfaa23e28a8b4b25f380091db30 Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Sat, 21 Sep 2013 05:29:04 +0200 Subject: Hotlist and History and Cookies Manager implemented. (The Cookie Manager window is a new one) --- atari/gemtk/utils.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'atari/gemtk/utils.c') diff --git a/atari/gemtk/utils.c b/atari/gemtk/utils.c index f080e307c..20fe5d424 100644 --- a/atari/gemtk/utils.c +++ b/atari/gemtk/utils.c @@ -95,4 +95,23 @@ void gemtk_clip_grect(VdiHdl vh, GRECT *rect) vs_clip_pxy(vh, pxy); } +void gemtk_wind_get_str(short aes_handle, short mode, char *str, int len) +{ + char tmp_str[255]; + + if(len>255) { + len = 255; + } + + memset(str, 0, len); + return; + /* + + wind_get(aes_handle, mode, (short)(((unsigned long)tmp_str)>>16), + (short)(((unsigned long)tmp_str) & 0xffff), 0, 0); + + strncpy(str, tmp_str, len); + */ +} + -- cgit v1.2.3