Changeset 5569 for trunk/src/advapi32/ADVAPI32.CPP
- Timestamp:
- Apr 22, 2001, 12:39:27 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/advapi32/ADVAPI32.CPP
r4410 r5569 1 /* $Id: ADVAPI32.CPP,v 1.1 6 2000-10-03 17:41:43sandervl Exp $ */1 /* $Id: ADVAPI32.CPP,v 1.17 2001-04-22 10:39:26 sandervl Exp $ */ 2 2 3 3 /* … … 273 273 } 274 274 275 276 /*****************************************************************************277 * Name : AddAccessAllowedAce278 * Purpose : The AddAccessAllowedAce function adds an access-allowed ACE to279 * an ACL. The access is granted to a specified SID. An ACE is an280 * access-control entry. An ACL is an access-control list. A SID is281 * a security identifier.282 * Parameters: PACL pAcl address of access-control list283 * DWORD dwAceRevision ACL revision level284 * DWORD AccessMask access mask285 * PSID pSid address of security identifier286 * Variables :287 * Result :288 * Remark :289 * Status : UNTESTED STUB290 *291 * Author : Patrick Haller [Tue, 1998/06/16 23:00]292 *****************************************************************************/293 294 BOOL WIN32API AddAccessAllowedAce(PACL pAcl,295 DWORD dwAceRevision,296 DWORD AccessMask,297 PSID pSid)298 {299 dprintf(("ADVAPI32: AddAccessAllowedAce(%08xh,%08xh,%08xh,%08xh) not implemented.\n",300 pAcl,301 dwAceRevision,302 AccessMask,303 pSid));304 305 return (FALSE);306 }307 308 309 275 /***************************************************************************** 310 276 * Name : AddAccessDeniedAce … … 338 304 return (FALSE); 339 305 } 340 341 342 /*****************************************************************************343 * Name : AddAce344 * Purpose : The AddAce function adds one or more ACEs to a specified ACL.345 * An ACE is an access-control entry. An ACL is an access-control list.346 * Parameters: PACL pAcl address of access-control list347 * DWORD dwAceRevision ACL revision level348 * DWORD dwStartingAceIndex index of ACE position in ACL349 * LPVOID pAceList address of one or more ACEs350 * DWORD nAceListLength size of buffer for ACEs351 * Variables :352 * Result :353 * Remark :354 * Status : UNTESTED STUB355 *356 * Author : Patrick Haller [Tue, 1998/06/16 23:00]357 *****************************************************************************/358 359 BOOL WIN32API AddAce(PACL pAcl,360 DWORD dwAceRevision,361 DWORD dwStartingAceIndex,362 LPVOID pAceList,363 DWORD nAceListLength)364 {365 dprintf(("ADVAPI32: AddAce(%08xh,%08xh,%08xh,%08xh,%08xh) not implemented.\n",366 pAcl,367 dwAceRevision,368 dwStartingAceIndex,369 pAceList,370 nAceListLength));371 372 return (FALSE);373 }374 375 306 376 307 /***************************************************************************** … … 754 685 } 755 686 756 /***************************************************************************** 757 * Name : FindFirstFreeAce 758 * Purpose : The FindFirstFreeAce function retrieves a pointer to the first 759 * free byte in an access-control list (ACL). 760 * Parameters: PACL pAcl address of access-control list 761 * LPVOID *pAce address of pointer to first free byte 762 * Variables : 763 * Result : 764 * Remark : 765 * Status : UNTESTED STUB 766 * 767 * Author : Patrick Haller [Tue, 1998/06/16 23:00] 768 *****************************************************************************/ 769 770 BOOL WIN32API FindFirstFreeAce(PACL pAcl, 771 LPVOID *pAce) 772 { 773 dprintf(("ADVAPI32: FindFirstFreeAce(%08xh, %08xh) not implemented.\n", 774 pAcl, 775 pAce)); 776 777 return (FALSE); /* signal failure */ 778 } 779 780 781 /***************************************************************************** 782 * Name : GetAce 783 * Purpose : The GetAce function obtains a pointer to an ACE in an ACL. 784 * An ACE is an access control entry. An ACL is an access control list. 785 * Parameters: PACL pAcl address of access-control list 786 * DWORD dwAceIndex index of ACE to retrieve 787 * LPVOID *pAce address of pointer to ACE 788 * Variables : 789 * Result : 790 * Remark : 791 * Status : UNTESTED STUB 792 * 793 * Author : Patrick Haller [Tue, 1998/06/16 23:00] 794 *****************************************************************************/ 795 796 BOOL WIN32API GetAce(PACL pAcl, 797 DWORD dwAceIndex, 798 LPVOID *pAce) 799 { 800 dprintf(("ADVAPI32: GetAce(%08xh,%08xh,%08xh) not implemented.\n", 801 pAcl, 802 dwAceIndex, 803 pAce)); 804 805 return (FALSE); /* signal failure */ 806 } 687 807 688 808 689
Note:
See TracChangeset
for help on using the changeset viewer.