mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
c8215a37df
git-svn-id: svn://svn.cc65.org/cc65/trunk@155 b7a2c559-68d2-44c3-8de9-860c34a00d81
33 lines
620 B
C
33 lines
620 B
C
/* 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);
|
|
}
|