www.pudn.com > gps_working.rar > gps_ctl.h


 
#ifndef gps_ctl_h____ 
#define gps_ctl_h____ 
 
#include "fixed_echo.h" 
 
enum gps_ctl_msg_type { 
	gps_ctl_msg_type_timer = 1, 
	gps_ctl_msg_type_click, 
	gps_ctl_msg_type_move, 
	gps_ctl_msg_type_idle, 
}; 
 
typedef struct { 
	gps_ctl_msg_type msg; 
	int pos_x; 
	int pos_y; 
} gps_ctl_msg_t; 
 
fixed_status gps_ctl_execute(gps_ctl_msg_t msg); 
 
 
 
#endif