Changeset 1654 for trunk/src/NTDLL/rtl.cpp
- Timestamp:
- Nov 9, 1999, 10:54:47 AM (26 years ago)
- 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:02phaller Exp $ */1 /* $Id: rtl.cpp,v 1.9 1999-11-09 09:54:47 phaller Exp $ */ 2 2 3 3 /* … … 617 617 } 618 618 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 633 PLUID 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.