/* ==== prototype stuff ==== */ #ifndef __GEM_HANDL__ extern int lib_handle; extern int xdesk, ydesk, wdesk, hdesk; extern MFDB std_fdb; #endif /** GEM_HNDL.C **/ void init_appl _((BOOLEAN, char*)); void init_appl2 _((BOOLEAN, char*, BOOLEAN)); void exit_appl _((void)); void exit_appl2 _((void)); /* like exit_appl() but without exit(0) <- use exit_appl2() for `atexit'. exit_appl() will surely crash when called from exit() because it calls exit() itself. */ void open_vwork _((WORD)); void close_vwork _((void)); LONG calcScrSize _((WORD w_pix, WORD h_pix, WORD planes)); /** FIX_IMAG.c **/ void fix_tree _((OBJECT*)); void fix_image _((BITBLK*)); void fix_icon _((ICONBLK*)); void vditrans _((BBWORD*,WORD, BBWORD*,WORD, WORD)); void vdifix _((MFDB*, BBWORD*, WORD,WORD)); /** CLIP_IT.c **/ void clip_start _((int x, int y, int w, int h)); void clip_end _((void)); #ifdef MEGAMAX #define memmove(d,s,l) bcopy((s),(d),(int)(l)) #endif /* -eof- */