16 lines
287 B
C
Raw Normal View History

2013-03-12 00:08:07 -07:00
#ifndef __MAP_H_
#define __MAP_H_
#include "afpfs-ng/afp.h"
#define AFP_MAPPING_UNKNOWN 0
#define AFP_MAPPING_COMMON 1
#define AFP_MAPPING_LOGINIDS 2
#define AFP_MAPPING_NAME 3
unsigned int map_string_to_num(char * name);
char * get_mapping_name(struct afp_volume * volume);
#endif