summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-01 14:52:54 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-05-01 14:52:54 +0000
commit66281f7b5d1b00e56ef82aca2b478243191b4afc (patch)
tree80c3626717d9db8bc4b3b6726149aff19dbb446c /apps
parent3b4da0487714074060ffe24d524d1f11bac375de (diff)
Add beginning of NxWM NxConsole application
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4681 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/nxconsole/nxcon_internal.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/apps/examples/nxconsole/nxcon_internal.h b/apps/examples/nxconsole/nxcon_internal.h
index 199bbd0525..c5ad760adf 100644
--- a/apps/examples/nxconsole/nxcon_internal.h
+++ b/apps/examples/nxconsole/nxcon_internal.h
@@ -265,18 +265,18 @@
struct nxcon_state_s
{
- volatile bool haveres; /* True: Have screen resolution */
- volatile bool connected; /* True: Connected to server */
- sem_t eventsem; /* Control waiting for display events */
- pid_t pid; /* Console task ID */
- NXHANDLE hnx; /* The connection handler */
- NXTKWINDOW hwnd; /* The window */
- NXCONSOLE hdrvr; /* The console driver */
- FAR struct nxcon_window_s wndo; /* Describes the window */
- nxgl_coord_t xres; /* Screen X resolution */
- nxgl_coord_t yres; /* Screen Y resolution */
- struct nxgl_size_s wsize; /* Window size */
- struct nxgl_point_s wpos; /* Window position */
+ volatile bool haveres; /* True: Have screen resolution */
+ volatile bool connected; /* True: Connected to server */
+ sem_t eventsem; /* Control waiting for display events */
+ pid_t pid; /* Console task ID */
+ NXHANDLE hnx; /* The connection handler */
+ NXTKWINDOW hwnd; /* The window */
+ NXCONSOLE hdrvr; /* The console driver */
+ struct nxcon_window_s wndo; /* Describes the window */
+ nxgl_coord_t xres; /* Screen X resolution */
+ nxgl_coord_t yres; /* Screen Y resolution */
+ struct nxgl_size_s wsize; /* Window size */
+ struct nxgl_point_s wpos; /* Window position */
};
/****************************************************************************