summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xatari/misc.h3
-rwxr-xr-xatari/schedule.c2
-rwxr-xr-xatari/treeview.h2
3 files changed, 6 insertions, 1 deletions
diff --git a/atari/misc.h b/atari/misc.h
index 959491c26..7771fc962 100755
--- a/atari/misc.h
+++ b/atari/misc.h
@@ -36,4 +36,7 @@ OBJECT *get_tree( int idx );
char *get_rsc_string( int idx );
void gem_set_cursor( MFORM_EX * cursor );
void dbg_grect( char * str, GRECT * r );
+void * ldg_open( char * name, short * global );
+void * ldg_find( char * name, short * ldg );
+int ldg_close( void * ldg, short * global );
#endif \ No newline at end of file
diff --git a/atari/schedule.c b/atari/schedule.c
index 17ea95dcd..cc3c90a45 100755
--- a/atari/schedule.c
+++ b/atari/schedule.c
@@ -16,6 +16,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <stdlib.h>
+#include <string.h>
#include <sys/time.h>
#include <time.h>
diff --git a/atari/treeview.h b/atari/treeview.h
index c1d35fdf0..f5f16a57a 100755
--- a/atari/treeview.h
+++ b/atari/treeview.h
@@ -40,7 +40,7 @@ struct atari_treeview
typedef struct atari_treeview * NSTREEVIEW;
-NSTREEVIEW atari_treeview_create( uint32_t flags, WINDOW * win ) ;
+NSTREEVIEW atari_treeview_create( uint32_t flags, WINDOW * win );
void atari_treeview_destroy( NSTREEVIEW tv );
void atari_treeview_open( NSTREEVIEW tv );
void atari_treeview_close( NSTREEVIEW tv );