Changeset 7983 for trunk/src/advapi32/ADVAPI32.CPP
- Timestamp:
- Feb 21, 2002, 11:52:43 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/advapi32/ADVAPI32.CPP
r6510 r7983 1 /* $Id: ADVAPI32.CPP,v 1. 19 2001-08-10 19:31:19sandervl Exp $ */1 /* $Id: ADVAPI32.CPP,v 1.20 2002-02-21 22:51:58 sandervl Exp $ */ 2 2 3 3 /* … … 1005 1005 1006 1006 1007 /*****************************************************************************1008 * Name : LookupAccountNameA1009 * Purpose : The LookupAccountName function accepts the name of a system and1010 * an account as input. It retrieves a security identifier (SID)1011 * for the account and the name of the domain on which the account was found.1012 * Parameters: LPCSTR lpSystemName address of string for system name1013 * LPCSTR lpAccountName address of string for account name1014 * PSID Sid address of security identifier1015 * LPDWORD cbSid address of size of security identifier1016 * LPTSTR ReferencedDomainName address of string for referenced domain1017 * LPDWORD cbReferencedDomainName address of size of domain string1018 * PSID_NAME_USE peUse address of SID-type indicator1019 * Variables :1020 * Result :1021 * Remark :1022 * Status : UNTESTED STUB1023 *1024 * Author : Patrick Haller [Tue, 1998/06/16 23:00]1025 *****************************************************************************/1026 1027 BOOL WIN32API LookupAccountNameA(LPCSTR lpSystemName,1028 LPCSTR lpAccountName,1029 PSID Sid,1030 LPDWORD cbSid,1031 LPTSTR ReferencedDomainName,1032 LPDWORD cbReferencedDomainName,1033 PSID_NAME_USE peUse)1034 {1035 dprintf(("ADVAPI32: LookupAccountNameA(%s,%s,%08xh,%08xh,%s,%08xh,%08xh) not implemented.\n",1036 lpSystemName,1037 lpAccountName,1038 Sid,1039 cbSid,1040 ReferencedDomainName,1041 cbReferencedDomainName,1042 peUse));1043 1044 return (FALSE); /* signal failure */1045 }1046 1047 1007 1048 1008 /***************************************************************************** … … 1681 1641 1682 1642 1683 /*****************************************************************************1684 * Name : SetKernelObjectSecurity1685 * Purpose : The SetKernelObjectSecurity function sets the security of a kernel1686 * object. For example, this can be a process, thread, or event.1687 * Parameters: HANDLE hObject handle of object1688 * SECURITY_INFORMATION si type of information to set1689 * PSECURITY_DESCRIPTOR psd address of security descriptor1690 * Variables :1691 * Result :1692 * Remark :1693 * Status : UNTESTED STUB1694 *1695 * Author : Patrick Haller [Tue, 1998/06/16 23:00]1696 *****************************************************************************/1697 1698 BOOL WIN32API SetKernelObjectSecurity(HANDLE hObject,1699 SECURITY_INFORMATION si,1700 PSECURITY_DESCRIPTOR psd)1701 {1702 dprintf(("ADVAPI32: SetKernelObjectSecurity(%08xh,%08xh,%08xh) not implemented.\n",1703 hObject,1704 si,1705 psd));1706 1707 return (FALSE); /* signal failure */1708 }1709 1710 1643 1711 1644 /*****************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.