navit  0.5.3-trunk
binding_win32.h
Go to the documentation of this file.
1 
20 #ifndef BINDING_WIN32_H
21 #define BINDING_WIN32_H
22 
23 #define NAVIT_BINDING_W32_DWDATA 1
24 #define NAVIT_BINDING_W32_MAGIC "NavIt"
25 #define NAVIT_BINDING_W32_VERSION 1
26 
28  /* Structure version number, should be equal to NAVIT_BINDING_W32_VERSION */
29  int version;
30  /* Magic code to filter out packets directed to other applications and [mistakely] sent to us or broadcasted.
31  * should be equal to NAVIT_BINDING_W32_MAGIC */
32  char magic[6];
33  /* Command to be executed by Navit */
34  char text[1];
35 };
36 
37 #endif
Definition: binding_win32.h:27
int version
Definition: binding_win32.h:29
char text[1]
Definition: binding_win32.h:34
char magic[6]
Definition: binding_win32.h:32