Ignore:
Timestamp:
Feb 21, 2002, 11:52:43 PM (24 years ago)
Author:
sandervl
Message:

update

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:19 sandervl Exp $ */
     1/* $Id: ADVAPI32.CPP,v 1.20 2002-02-21 22:51:58 sandervl Exp $ */
    22
    33/*
     
    10051005
    10061006
    1007 /*****************************************************************************
    1008  * Name      : LookupAccountNameA
    1009  * Purpose   : The LookupAccountName function accepts the name of a system and
    1010  *             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 name
    1013  *             LPCSTR       lpAccountName          address of string for account name
    1014  *             PSID          Sid                    address of security identifier
    1015  *             LPDWORD       cbSid                  address of size of security identifier
    1016  *             LPTSTR        ReferencedDomainName   address of string for referenced domain
    1017  *             LPDWORD       cbReferencedDomainName address of size of domain string
    1018  *             PSID_NAME_USE peUse                  address of SID-type indicator
    1019  * Variables :
    1020  * Result    :
    1021  * Remark    :
    1022  * Status    : UNTESTED STUB
    1023  *
    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 
    10471007
    10481008/*****************************************************************************
     
    16811641
    16821642
    1683 /*****************************************************************************
    1684  * Name      : SetKernelObjectSecurity
    1685  * Purpose   : The SetKernelObjectSecurity function sets the security of a kernel
    1686  *             object. For example, this can be a process, thread, or event.
    1687  * Parameters: HANDLE               hObject handle of object
    1688  *             SECURITY_INFORMATION si      type of information to set
    1689  *             PSECURITY_DESCRIPTOR psd     address of security descriptor
    1690  * Variables :
    1691  * Result    :
    1692  * Remark    :
    1693  * Status    : UNTESTED STUB
    1694  *
    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 
    17101643
    17111644/*****************************************************************************
Note: See TracChangeset for help on using the changeset viewer.