22 lines
321 B
C
22 lines
321 B
C
|
|
/* $Id$ */
|
||
|
|
/*!
|
||
|
|
* %file Mw/FileChoose.h
|
||
|
|
* %brief File chooser
|
||
|
|
*/
|
||
|
|
#ifndef __MW_FILECHOOSER_H__
|
||
|
|
#define __MW_FILECHOOSER_H__
|
||
|
|
|
||
|
|
#include <Mw/MachDep.h>
|
||
|
|
#include <Mw/TypeDefs.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
MWDECL MwWidget MwFileChooser(MwWidget handle, const char* title);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|