Ignore:
Timestamp:
Nov 9, 1999, 10:54:47 AM (26 years ago)
Author:
phaller
Message:

Add. RtlCopyLuid added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/rtl.cpp

    r1650 r1654  
    1 /* $Id: rtl.cpp,v 1.8 1999-11-09 00:44:02 phaller Exp $ */
     1/* $Id: rtl.cpp,v 1.9 1999-11-09 09:54:47 phaller Exp $ */
    22
    33/*
     
    617617}
    618618
     619
     620/*****************************************************************************
     621 * Name      : RtlCopyLuid
     622 * Purpose   : copy local unique identifier?
     623 * Parameters: PLUID pluid1
     624 *             PLUID pluid2
     625 * Variables :
     626 * Result    :
     627 * Remark    : NTDLL.321
     628 * Status    : VERIFIED
     629 *
     630 * Author    : Patrick Haller [Tue, 1999/11/09 09:00]
     631 *****************************************************************************/
     632
     633PLUID WINAPI RtlCopyLuid(PLUID pluid1,
     634                         PLUID pluid2)
     635{
     636  pluid2->LowPart  = pluid1->LowPart;
     637  pluid2->HighPart = pluid1->HighPart;
     638  return (pluid1);
     639}
Note: See TracChangeset for help on using the changeset viewer.