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.
83 lines
1.6 KiB
83 lines
1.6 KiB
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
BINARY.INL
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
//
|
|
// TODO - comment this function
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
inline
|
|
BOOL
|
|
CLocBinary::GetFBinaryDirty(void)
|
|
const
|
|
{
|
|
return m_Flags.m_fBinaryDirty;
|
|
}
|
|
|
|
|
|
|
|
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
//
|
|
// TODO - comment this function!
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
inline
|
|
void
|
|
CLocBinary::SetFBinaryDirty(
|
|
BOOL f)
|
|
{
|
|
m_Flags.m_fBinaryDirty = f;
|
|
}
|
|
|
|
|
|
|
|
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
//
|
|
// TODO - Comment this function.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
inline
|
|
BOOL
|
|
CLocBinary::GetFPartialUpdateBinary(void)
|
|
const
|
|
{
|
|
return m_Flags.m_fPartialUpdateBinary;
|
|
}
|
|
|
|
|
|
|
|
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
//
|
|
// TODO - Comment this function!
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
inline
|
|
void
|
|
CLocBinary::SetFPartialUpdateBinary(
|
|
BOOL f)
|
|
{
|
|
m_Flags.m_fPartialUpdateBinary = f;
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// Default conversion of one Binary to another format - it fails
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
inline
|
|
BOOL
|
|
CLocBinary::Convert(CLocItem *)
|
|
{
|
|
return FALSE;
|
|
}
|