2000-07-15 09:12:11 +00:00
|
|
|
/*
|
|
|
|
GEOSLib example
|
|
|
|
|
|
|
|
using DlgBoxFileSelect
|
|
|
|
|
2003-01-10 21:09:13 +00:00
|
|
|
Maciej 'YTM/Elysium' Witkowiak
|
|
|
|
<ytm@elysium.pl>
|
2000-07-15 09:12:11 +00:00
|
|
|
|
|
|
|
26.12.1999
|
|
|
|
*/
|
|
|
|
|
2012-02-09 12:32:53 +00:00
|
|
|
|
2000-07-15 09:12:11 +00:00
|
|
|
#include <geos.h>
|
|
|
|
|
2012-02-09 12:32:53 +00:00
|
|
|
char fName[17] = "";
|
2000-07-15 09:12:11 +00:00
|
|
|
|
|
|
|
void main (void)
|
|
|
|
{
|
|
|
|
r0=(int)fName;
|
|
|
|
|
2012-02-28 22:19:28 +00:00
|
|
|
DlgBoxOk(CBOLDON "You now will be presented", "with an apps list" CPLAINTEXT);
|
2012-02-09 12:32:53 +00:00
|
|
|
DlgBoxFileSelect("", APPLICATION, fName);
|
2000-07-15 09:12:11 +00:00
|
|
|
DlgBoxOk("You've chosen:" CBOLDON, fName);
|
|
|
|
}
|