milsko/include/Mw/Dialog/DirectoryChooser.h
Nishi 2dd2c3870f
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
introduce MWAPI
2026-04-22 12:05:49 +09:00

27 lines
463 B
C

/*!
* @file Mw/Dialog/DirectoryChooser.h
* @brief Directory chooser
*/
#ifndef __MW_DIRECTORYCHOOSER_H__
#define __MW_DIRECTORYCHOOSER_H__
#include <Mw/MachDep.h>
#include <Mw/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* @brief Creates a directory chooser
* @param handle Widget
* @param title Title text
* @return Widget
*/
MWDECL MwWidget MWAPI MwDirectoryChooser(MwWidget handle, const char* title);
#ifdef __cplusplus
}
#endif
#endif