milsko/include/Mw/Dialog/DirectoryChooser.h
IoIxD 8c1c9228b7
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
use unix2dos to undo what windows did
2026-07-16 15:44:09 -07: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