Allow to optionally (triggered with SELFSTART_PROCESS) self start the application.

This commit is contained in:
oliverschmidt 2008-02-07 16:28:11 +00:00
parent 155a27ff59
commit 0a8f384a40
13 changed files with 64 additions and 12 deletions

View file

@ -6,6 +6,10 @@
PROCESS(dhcp_process, "DHCP");
#if SELFSTART_PROCESS
AUTOSTART_PROCESSES(&dhcp_process);
#endif /* SELFSTART_PROCESS */
static struct ctk_window window;
static struct ctk_button getbutton =
{CTK_BUTTON(0, 0, 16, "Request address")};