mirror of
https://github.com/mabam/afpfs-ng-mac.git
synced 2025-01-19 11:31:48 +00:00
16 lines
287 B
C
16 lines
287 B
C
|
#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
|