• Fichier: filesel.c
  • Path: /invader_nes/InvaderNES/build/cc65/samples/geos/filesel.c
  • File size: 399 bytes
  • MIME-type: text/x-c
  • Charset: utf-8
 
Retour
/*
    GEOSLib example
    
    using DlgBoxFileSelect
    
    Maciej 'YTM/Elysium' Witkowiak
    <ytm@elysium.pl>
    
    26.12.1999
*/


#include <geos.h>

char fName[17] = "";

void main (void)
{
    r0=(int)fName;

    DlgBoxOk(CBOLDON "You now will be presented", "with an apps list" CPLAINTEXT);
    DlgBoxFileSelect("", APPLICATION, fName);
    DlgBoxOk("You've chosen:" CBOLDON, fName);
}