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/lsa.cpp

    r4400 r7983  
    1 /* $Id: lsa.cpp,v 1.6 2000-10-03 05:38:09 bird Exp $ */
     1/* $Id: lsa.cpp,v 1.7 2002-02-21 22:51:59 sandervl Exp $ */
    22
    33/*
     
    284284                                      ULONG                CountOfRights);
    285285
    286 NTSTATUS WIN32API LsaClose(LSA_HANDLE hLsaObject);
    287286
    288287NTSTATUS WIN32API LsaCreateTrustedDomainEx(LSA_HANDLE                       PolicyHandle,
     
    317316                                               PULONG                   CountReturned);
    318317
    319 NTSTATUS WIN32API LsaFreeMemory(PVOID Buffer);
    320318
    321319NTSTATUS WIN32API LsaLookupNames(LSA_HANDLE                   PolicyHandle,
     
    325323                                 PLSA_TRANSLATED_SID*         Sids);
    326324
    327 NTSTATUS WIN32API LsaLookupSids(LSA_HANDLE                   PolicyHandle,
    328                                 ULONG                        Count,
    329                                 PSID*                        Sids,
    330                                 PLSA_REFERENCED_DOMAIN_LIST* ReferencedDomains,
    331                                 PLSA_TRANSLATED_NAME*        Names);
    332325
    333326ULONG WIN32API LsaNtStatusToWinError(NTSTATUS Status);
     
    343336                                             PLSA_HANDLE         TrustedDomainHandle);
    344337
    345 NTSTATUS WIN32API LsaQueryInformationPolicy(LSA_HANDLE               PolicyHandle,
    346                                             POLICY_INFORMATION_CLASS InformationClass,
    347                                             PVOID *                  Buffer);
    348338
    349339NTSTATUS WIN32API LsaQueryTrustedDomainInfo(LSA_HANDLE                 PolicyHandle,
     
    420410
    421411
    422 /*****************************************************************************
    423  * Name      : LsaClose
    424  * Purpose   : The LsaClose function closes a handle to an LSA policy object.
    425  * Parameters: LSA_HANDLE ObjectHandle
    426  * Variables :
    427  * Result    : NTSTATUS
    428  * Remark    :
    429  * Status    : UNTESTED STUB
    430  *
    431  * Author    : Patrick Haller [Thu, 1999/11/04 23:00]
    432  *****************************************************************************/
    433 
    434 ODINFUNCTION1(NTSTATUS,LsaClose,LSA_HANDLE,hLsaObject)
    435 {
    436   dprintf(("ADVAPI32:Lsa: LsaClose not implemented.\n"));
    437   return 0;
    438 }
    439412
    440413
     
    608581
    609582
    610 /*****************************************************************************
    611  * Name      : LsaFreeMemory
    612  * Purpose   : The LsaFreeMemory function frees memory allocated for
    613  *             an output buffer by an LSA function call. LSA functions that
    614  *             return variable-length output buffers always allocate the
    615  *             buffer on behalf of the caller. The caller must free this
    616  *             memory by passing the returned buffer pointer to
    617  *             LsaFreeMemory when the memory is no longer required.
    618  * Parameters: PVOID Buffer
    619  * Variables :
    620  * Result    : NTSTATUS
    621  * Remark    :
    622  * Status    : UNTESTED STUB
    623  *
    624  * Author    : Patrick Haller [Thu, 1999/11/04 23:00]
    625  *****************************************************************************/
    626 
    627 ODINFUNCTION1(NTSTATUS, LsaFreeMemory,
    628               PVOID,    Buffer)
    629 {
    630   dprintf(("ADVAPI32:Lsa: LsaFreeMemory not implemented.\n"));
    631   return 0;
    632 }
    633583
    634584
     
    663613
    664614
    665 /*****************************************************************************
    666  * Name      : LsaLookupSids
    667  * Purpose   : The LsaLookupSids function looks up the names
    668  *             that corresponding to an array of SIDs. If a name can
    669  *             not be mapped to a SID, LsaLookupSids converts
    670  *             the SID to character form.
    671  * Parameters: LSA_HANDLE PolicyHandle,
    672  *             ULONG                       Count
    673  *             PSID                        *Sids
    674  *             PLSA_REFERENCED_DOMAIN_LIST *ReferencedDomains
    675  *             PLSA_TRANSLATED_NAME        *Names
    676  * Variables :
    677  * Result    : NTSTATUS
    678  * Remark    :
    679  * Status    : UNTESTED STUB
    680  *
    681  * Author    : Patrick Haller [Thu, 1999/11/04 23:00]
    682  *****************************************************************************/
    683 
    684 ODINFUNCTION5(NTSTATUS,                    LsaLookupSids,
    685               LSA_HANDLE,                  PolicyHandle,
    686               ULONG,                       Count,
    687               PSID*,                       Sids,
    688               PLSA_REFERENCED_DOMAIN_LIST*,ReferencedDomains,
    689               PLSA_TRANSLATED_NAME*,       Names)
    690 {
    691   dprintf(("ADVAPI32:Lsa: LsaLookupNames not implemented.\n"));
    692   return 0;
    693 }
    694615
    695616
     
    745666}
    746667
    747 
    748 /*****************************************************************************
    749  * Name      : LsaQueryInformationPolicy
    750  * Purpose   : The LsaQueryInformationPolicy function
    751  *             retrieves information about an LSA policy object.
    752  * Parameters:  LSA_HANDLE PolicyHandle,
    753  *              POLICY_INFORMATION_CLASS InformationClass,
    754  *              PVOID *Buffer
    755  * Variables :
    756  * Result    : NTSTATUS
    757  * Remark    :
    758  * Status    : UNTESTED STUB
    759  *
    760  * Author    : Patrick Haller [Thu, 1999/11/04 23:00]
    761  *****************************************************************************/
    762 
    763 ODINFUNCTION3(NTSTATUS,                 LsaQueryInformationPolicy,
    764               LSA_HANDLE,               PolicyHandle,
    765               POLICY_INFORMATION_CLASS, InformationClass,
    766               PVOID *,                  Buffer)
    767 {
    768   dprintf(("ADVAPI32:Lsa: LsaQueryInformationPolicy not implemented.\n"));
    769   return 0;
    770 }
    771668
    772669
Note: See TracChangeset for help on using the changeset viewer.