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

@ -29,7 +29,7 @@
*
* This file is part of the Contiki desktop environment
*
* $Id: netconf.c,v 1.6 2007/09/29 04:12:16 matsutsuka Exp $
* $Id: netconf.c,v 1.7 2008/02/07 16:30:42 oliverschmidt Exp $
*
*/
@ -67,6 +67,10 @@ static struct ctk_button tcpipclosebutton =
PROCESS(netconf_process, "Network configurator");
#if SELFSTART_PROCESS
AUTOSTART_PROCESSES(&netconf_process);
#endif /* SELFSTART_PROCESS */
static void makestrings(void);
/*-----------------------------------------------------------------------------------*/