mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
build: moved libds/common/flag_mapping.c into a common subsystem
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
@ -23,6 +23,7 @@
|
||||
#include "includes.h"
|
||||
#include "librpc/gen_ndr/samr.h"
|
||||
#include "../libds/common/flags.h"
|
||||
#include "flag_mapping.h"
|
||||
|
||||
/*
|
||||
translated the ACB_CTRL Flags to UserFlags (userAccountControl)
|
||||
|
13
libds/common/flag_mapping.h
Normal file
13
libds/common/flag_mapping.h
Normal file
@ -0,0 +1,13 @@
|
||||
#ifndef __LIBDS_COMMON_FLAG_MAPPING_H__
|
||||
#define __LIBDS_COMMON_FLAG_MAPPING_H__
|
||||
|
||||
/* The following definitions come from flag_mapping.c */
|
||||
|
||||
uint32_t ds_acb2uf(uint32_t acb);
|
||||
uint32_t ds_uf2acb(uint32_t uf);
|
||||
uint32_t ds_uf2atype(uint32_t uf);
|
||||
uint32_t ds_gtype2atype(uint32_t gtype);
|
||||
enum lsa_SidType ds_atype_map(uint32_t atype);
|
||||
uint32_t ds_uf2prim_group_rid(uint32_t uf);
|
||||
|
||||
#endif /* __LIBDS_COMMON_FLAG_MAPPING_H__ */
|
3
libds/common/wscript_build
Normal file
3
libds/common/wscript_build
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
bld.SAMBA_SUBSYSTEM('flag_mapping',
|
||||
source='flag_mapping.c')
|
Reference in New Issue
Block a user