1 #ifndef CLIB_BUTTON_PROTOS_H
    2 #define CLIB_BUTTON_PROTOS_H
    3 
    4 /*
    5 	button.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 
   19 #ifdef __cplusplus
   20 extern "C" {
   21 #endif /* __cplusplus */
   22 
   23 Class *BUTTON_GetClass( VOID );
   24 
   25 #ifdef __cplusplus
   26 }
   27 #endif /* __cplusplus */
   28 
   29 
   30 #endif /* CLIB_BUTTON_PROTOS_H */