1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00
cc65/samples/geos/dialog.c
Greg King 0390c34e88 Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
2014-06-30 16:51:07 -04:00

33 lines
729 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);
}