159 lines
3.1 KiB
Modula-2
159 lines
3.1 KiB
Modula-2
LIBRARY DSAUTH
|
|
EXPORTS
|
|
;
|
|
; store.c
|
|
;
|
|
|
|
StoreInitHandle
|
|
StoreCleanupHandle
|
|
StoreGetHandle
|
|
StoreSetSearchOneLevel
|
|
StoreSetSearchSubTree
|
|
StoreBeginSearch
|
|
StoreEndSearch
|
|
StoreSearchGetNext
|
|
StoreCreateObjectVA
|
|
StoreCreateObjectL
|
|
StoreDeleteObject
|
|
StoreSetAttributesVA
|
|
StoreSetAttributesL
|
|
StoreCollectAttributes
|
|
|
|
;
|
|
; dhcpbas.c
|
|
;
|
|
|
|
DhcpDsGetRoot
|
|
DhcpDsGetLists
|
|
DhcpDsGetAttribs
|
|
DhcpDsSetLists
|
|
DhcpDsSetAttribs
|
|
|
|
;
|
|
; dhcpread.c
|
|
;
|
|
|
|
DhcpDsGetServers
|
|
DhcpDsGetEnterpriseServers
|
|
|
|
;
|
|
; rpcapi1.c
|
|
;
|
|
|
|
|
|
DhcpDsCreateOptionDef
|
|
DhcpDsModifyOptionDef
|
|
DhcpDsEnumOptionDefs
|
|
DhcpDsDeleteOptionDef
|
|
DhcpDsSetOptionValue
|
|
DhcpDsRemoveOptionValue
|
|
DhcpDsGetOptionValue
|
|
DhcpDsEnumOptionValues
|
|
DhcpDsCreateClass
|
|
DhcpDsDeleteClass
|
|
DhcpDsGetClassInfo
|
|
DhcpDsEnumClasses
|
|
|
|
;
|
|
; rpcapi2.c
|
|
;
|
|
|
|
DhcpDsAddServer
|
|
DhcpDsDelServer
|
|
DhcpDsEnumServers
|
|
DhcpDsSetSScope
|
|
DhcpDsDelSScope
|
|
DhcpDsGetSScopeInfo
|
|
DhcpDsServerAddSubnet
|
|
DhcpDsServerDelSubnet
|
|
DhcpDsServerModifySubnet
|
|
DhcpDsServerEnumSubnets
|
|
DhcpDsServerGetSubnetInfo
|
|
DhcpDsSubnetAddRangeOrExcl
|
|
DhcpDsSubnetDelRangeOrExcl
|
|
DhcpDsEnumRangesOrExcl
|
|
DhcpDsSubnetAddReservation
|
|
DhcpDsSubnetDelReservation
|
|
DhcpDsEnumReservations
|
|
|
|
;
|
|
; validate.c
|
|
;
|
|
|
|
DhcpDsValidateService
|
|
|
|
;
|
|
; rpcstubs.c
|
|
; dhcpsapi.def stuff here.. all these work on DS, but have
|
|
; same interface as the rpc stuff in dhcpsapi.dll
|
|
;
|
|
|
|
DhcpCreateSubnetDS
|
|
DhcpSetSubnetInfoDS
|
|
DhcpGetSubnetInfoDS
|
|
DhcpEnumSubnetsDS
|
|
DhcpDeleteSubnetDS
|
|
DhcpCreateOptionDS
|
|
DhcpSetOptionInfoDS
|
|
DhcpGetOptionInfoDS
|
|
DhcpRemoveOptionDS
|
|
DhcpSetOptionValueDS
|
|
DhcpGetOptionValueDS
|
|
DhcpEnumOptionValuesDS
|
|
DhcpRemoveOptionValueDS
|
|
DhcpEnumOptionsDS
|
|
DhcpSetOptionValuesDS
|
|
DhcpAddSubnetElementDS
|
|
DhcpAddSubnetElementV4DS
|
|
DhcpEnumSubnetElementsDS
|
|
DhcpEnumSubnetElementsV4DS
|
|
DhcpRemoveSubnetElementDS
|
|
DhcpRemoveSubnetElementV4DS
|
|
DhcpSetSuperScopeV4DS
|
|
DhcpGetSuperScopeInfoV4DS
|
|
DhcpDeleteSuperScopeV4DS
|
|
|
|
DhcpGetClientInfoDS
|
|
DhcpSetClientInfoDS
|
|
DhcpGetClientInfoV4DS
|
|
DhcpSetClientInfoV4DS
|
|
|
|
DhcpCreateOptionV5DS
|
|
DhcpSetOptionInfoV5DS
|
|
DhcpGetOptionInfoV5DS
|
|
DhcpEnumOptionsV5DS
|
|
DhcpRemoveOptionV5DS
|
|
DhcpSetOptionValueV5DS
|
|
DhcpSetOptionValuesV5DS
|
|
DhcpGetOptionValueV5DS
|
|
DhcpEnumOptionValuesV5DS
|
|
DhcpRemoveOptionValueV5DS
|
|
DhcpCreateClassDS
|
|
DhcpModifyClassDS
|
|
DhcpDeleteClassDS
|
|
DhcpGetClassInfoDS
|
|
DhcpEnumClassesDS
|
|
DhcpGetAllOptionsDS
|
|
DhcpGetAllOptionValuesDS
|
|
|
|
;
|
|
; dhcpds.c --> actually in rpcstubs.c now..
|
|
;
|
|
|
|
DhcpEnumServersDS
|
|
DhcpAddServerDS
|
|
DhcpDeleteServerDS
|
|
;DhcpModifyServer
|
|
|
|
;
|
|
; dhcpds.c --> actually in rpcstubs.c now..
|
|
;
|
|
|
|
DhcpDsInitDS
|
|
DhcpDsCleanupDS
|
|
DhcpDsGetLastUpdateTime
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; end of file
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|