#include "Study.h"

#pragma comment(lib, "comctl32.lib")

SCDLLName("SC GUI Controls")

/*==========================================================================*/
/* Entry point for Combo box control */
SCSFExport scsf_ComboBoxControl(SCStudyInterfaceRef sc_) {
	
	Study::StartStudy(STUDY_COMBO, sc_);
}

/*==========================================================================*/
/* Entry point for Slider control */
SCSFExport scsf_SliderControl(SCStudyInterfaceRef sc_) {
	Study::StartStudy(STUDY_SLIDER, sc_);
}

/*==========================================================================*/
/* Entry point for power meter */
SCSFExport scsf_PowerMeterControl(SCStudyInterfaceRef sc_) {
	Study::StartStudy(STUDY_POWERMETER, sc_);
}

/*==========================================================================*/
/* Entry point for theme */
SCSFExport scsf_ThemeControl(SCStudyInterfaceRef sc_) {
	Study::StartStudy(STUDY_THEME, sc_);
}
