milsko/include/Mw/Dialog/ColorPicker.h

27 lines
433 B
C
Raw Normal View History

/*!
* @file Mw/Dialog/ColorPicker.h
* @brief Color picker
*/
#ifndef __MW_COLORPICKER_H__
#define __MW_COLORPICKER_H__
#include <Mw/MachDep.h>
#include <Mw/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* @brief Creates a color picker
* @param handle Widget
* @param title Title text
* @return Widget
*/
2026-04-22 12:05:49 +09:00
MWDECL MwWidget MWAPI MwColorPicker(MwWidget handle, const char* title);
#ifdef __cplusplus
}
#endif
#endif