Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
874 B

/***************************************************************************\
*
* File: TicketManager.inl
*
* History:
* 9/20/2000: DwayneN: Created
*
* Copyright (C) 2000 by Microsoft Corporation. All rights reserved.
*
\***************************************************************************/
#if !defined(SERVICES__TicketManager_inl__INCLUDED)
#define SERVICES__TicketManager_inl__INCLUDED
#pragma once
//------------------------------------------------------------------------------
DuTicket &
DuTicket::CastFromDWORD(
DWORD & dw)
{
return *(reinterpret_cast<DuTicket*>(&dw));
}
//------------------------------------------------------------------------------
DWORD &
DuTicket::CastToDWORD(
DuTicket & ticket)
{
return *(reinterpret_cast<DWORD*>(&ticket));
}
#endif // SERVICES__TicketManager_inl__INCLUDED