AppearanceHelpers.h

#ifndef _APPEARANCEHELPERS_
#define _APPEARANCEHELPERS_
 
#ifdef __MWERKS__
 
// includes for MetroWerks CodeWarrior
 
#include <Controls.h>
#include <Lists.h>
 
#else
 
#ifdef __APPLE_CC__
 
// includes for ProjectBuilder
 
#include <Carbon/Carbon.h>
 
#else
 
// includes for MPW
 
#include <Carbon.h>
 
#endif
#endif
 
extern pascal OSStatus SetPushButtonDefaultState    ( ControlHandle control, Boolean isDefault );
extern pascal OSStatus SetProgressIndicatorState    ( ControlHandle control, Boolean isDeterminate );
extern pascal OSStatus GetListBoxListHandle         ( ControlHandle control, ListHandle* list );
 
#endif // _APPEARANCEHELPERS_