Added more sample programs from Maciek

git-svn-id: svn://svn.cc65.org/cc65/trunk@155 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-07-16 17:36:41 +00:00
parent f20e32ec65
commit c8215a37df
5 changed files with 146 additions and 0 deletions

32
samples/geos/dialog.c Normal file
View File

@@ -0,0 +1,32 @@
/* Note:
* This is just a sample piece of code that shows how to use some structs -
* it may not even run.
*/
#include <geos.h>
void sysopvfunc (void);
void opvecfunc (void);
void usrfunc (void);
static const dlgBoxStr myDialog = {
DB_SETPOS (1, 0,150,0,319),
DB_TXTSTR (10,20,"test"),
DB_VARSTR (10,20,&r0L),
DB_GETSTR (10,20,&r0L,9),
DB_SYSOPV (sysopvfunc),
DB_GRPHSTR (&r0L),
DB_GETFILES (10,10),
DB_OPVEC (opvecfunc),
DB_USRICON (0,0,&r0L),
DB_USRROUT (usrfunc),
DB_ICON (OK, DBI_X_0, DBI_Y_0 ),
DB_ICON (CANCEL, DBI_X_1, DBI_Y_1),
DB_END
};
void main (void)
{
DoDlgBox (&myDialog);
}