Initial Release 4.0

Function : Access Control List
ACLGetHistory - Return handle to buffer containing change history strings
----------------------------------------------------------------------------------------------------------

#include <acl.h>

STATUS LNPUBLIC ACLGetHistory(
DHANDLE hACL,
DHANDLE far *hHistory,
WORD far *HistoryCount);

Description :

Allocate a buffer and read the change history for this access control list into the buffer. The buffer will contain LMBCS strings, one entry for each change history event. Each LMBCS string is terminated by two NULL characters, for example LastString\0\0PreviousString\0\0. The strings appear in LIFO (last in, first out) order. The number of strings in the buffer is returned at *retHistoryCount. If there is no change history for this ACL, the retHistoryCount will be 0 and the buffer handle will be NULLHANDLE. If there are any history strings, the handle to the buffer is returned; the caller is responsible for freeing this memory by calling OSMemFree().

Parameters :

See Also :

NSFDbReadACL
----------------------------------------------------------------------------------------------------------