1 #ifndef CLIB_VIRTUAL_PROTOS_H 2 #define CLIB_VIRTUAL_PROTOS_H 3 4 /* 5 virtual.gadget C prototypes 6 7 Copyright © 2002 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifndef INTUITION_INTUITION_H 11 # include <intuition/intuition.h> 12 #endif 13 14 #ifndef INTUITION_CLASSES_H 15 # include <intuition/classes.h> 16 #endif 17 18 #ifndef GADGETS_LAYOUT_H 19 # include <gadgets/layout.h> 20 #endif 21 22 23 #ifdef __cplusplus 24 extern "C" { 25 #endif /* __cplusplus */ 26 27 struct IClass *VIRTUAL_GetClass( VOID ); 28 VOID RefreshVirtualGadget( struct Gadget *gadget, ULONG obj, struct Window *window, struct Requester *requester ); 29 BOOL RethinkVirtualSize( ULONG virt_obj, ULONG rootlayout, struct TextFont *font, struct Screen *screen, struct LayoutLimits *layoutlimits ); 30 31 #ifdef __cplusplus 32 } 33 #endif /* __cplusplus */ 34 35 36 #endif /* CLIB_VIRTUAL_PROTOS_H */