home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Resources
/
System
/
BoingBag1
/
Contributions
/
InstallerNG
/
GUI-API
/
example
/
igui_AskDir.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-10-28
|
943b
|
48 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
* since ASKFILE and ASKDIR offer nearly the same functionality,
* you could implement both in a single function and just use a
* flag to distinguish, what exactly is needed!
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
char * __asm igui_AskDir(register __a0 APTR application,
register __a1 struct FunctionEnvironment *localenv)
{
#ifdef DEBUG
DEBUG_MAKRO
#endif
return (guistuff_AskFile_AskDir(application, localenv, TRUE));
}