Minor formatting change.
This commit is contained in:
parent
2502148ade
commit
2748a0803f
|
@ -29,7 +29,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki desktop environment
|
* This file is part of the Contiki desktop environment
|
||||||
*
|
*
|
||||||
* $Id: telnetd.h,v 1.2 2007/04/13 22:15:52 oliverschmidt Exp $
|
* $Id: telnetd.h,v 1.3 2007/11/30 11:15:41 oliverschmidt Exp $
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#ifndef __TELNETD_H__
|
#ifndef __TELNETD_H__
|
||||||
|
@ -37,7 +37,6 @@
|
||||||
|
|
||||||
#include "contiki.h"
|
#include "contiki.h"
|
||||||
|
|
||||||
|
|
||||||
PROCESS_NAME(telnetd_process);
|
PROCESS_NAME(telnetd_process);
|
||||||
|
|
||||||
void telnetd_gui_eventhandler(process_event_t ev, process_data_t data);
|
void telnetd_gui_eventhandler(process_event_t ev, process_data_t data);
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: ctk.c,v 1.9 2007/11/28 10:13:57 matsutsuka Exp $
|
* $Id: ctk.c,v 1.10 2007/11/30 11:17:28 oliverschmidt Exp $
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -98,7 +98,6 @@ static unsigned char iconx, icony;
|
||||||
unsigned char ctk_arch_isprint(char c);
|
unsigned char ctk_arch_isprint(char c);
|
||||||
#endif /* ctk_arch_isprint */
|
#endif /* ctk_arch_isprint */
|
||||||
|
|
||||||
|
|
||||||
PROCESS(ctk_process, "CTK Contiki GUI");
|
PROCESS(ctk_process, "CTK Contiki GUI");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -162,7 +161,6 @@ process_event_t ctk_signal_screensaver_stop,
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
|
|
||||||
#if CTK_CONF_MOUSE_SUPPORT
|
#if CTK_CONF_MOUSE_SUPPORT
|
||||||
unsigned short mouse_x, mouse_y, mouse_button;
|
unsigned short mouse_x, mouse_y, mouse_button;
|
||||||
#endif /* CTK_CONF_MOUSE_SUPPORT */
|
#endif /* CTK_CONF_MOUSE_SUPPORT */
|
||||||
|
@ -176,6 +174,7 @@ static struct timer timer;
|
||||||
static void CC_FASTCALL
|
static void CC_FASTCALL
|
||||||
textentry_input(ctk_arch_key_t c,
|
textentry_input(ctk_arch_key_t c,
|
||||||
CC_REGISTER_ARG struct ctk_textentry *t);
|
CC_REGISTER_ARG struct ctk_textentry *t);
|
||||||
|
|
||||||
#if CTK_CONF_MENUS
|
#if CTK_CONF_MENUS
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/**
|
/**
|
||||||
|
@ -456,7 +455,6 @@ make_windowbuttons(CC_REGISTER_ARG struct ctk_window *window)
|
||||||
#endif /* CTK_CONF_WINDOWMOVE */
|
#endif /* CTK_CONF_WINDOWMOVE */
|
||||||
CTK_WIDGET_ADD(window, &window->titlebutton);
|
CTK_WIDGET_ADD(window, &window->titlebutton);
|
||||||
|
|
||||||
|
|
||||||
#if CTK_CONF_WINDOWCLOSE
|
#if CTK_CONF_WINDOWCLOSE
|
||||||
CTK_BUTTON_NEW(&window->closebutton, window->w - 3, placement,
|
CTK_BUTTON_NEW(&window->closebutton, window->w - 3, placement,
|
||||||
1, "x");
|
1, "x");
|
||||||
|
|
Loading…
Reference in a new issue