blob: 68530f8fe7973b0e4e3f4001793c2cc19c8bdced (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
enum destination_type {
destination_type_town=4,
destination_type_poly=6,
destination_type_street=8,
destination_type_house=12,
destination_type_map_point=16,
destination_type_bookmark=128,
};
int destination_address(struct container *co);
int destination_set(struct container *co, enum destination_type type, char *text, struct coord *c);
|