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.

83 lines
1.6 KiB

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. BINARY.INL
  5. History:
  6. --*/
  7. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  8. //
  9. // TODO - comment this function
  10. //
  11. //-----------------------------------------------------------------------------
  12. inline
  13. BOOL
  14. CLocBinary::GetFBinaryDirty(void)
  15. const
  16. {
  17. return m_Flags.m_fBinaryDirty;
  18. }
  19. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  20. //
  21. // TODO - comment this function!
  22. //
  23. //-----------------------------------------------------------------------------
  24. inline
  25. void
  26. CLocBinary::SetFBinaryDirty(
  27. BOOL f)
  28. {
  29. m_Flags.m_fBinaryDirty = f;
  30. }
  31. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  32. //
  33. // TODO - Comment this function.
  34. //
  35. //-----------------------------------------------------------------------------
  36. inline
  37. BOOL
  38. CLocBinary::GetFPartialUpdateBinary(void)
  39. const
  40. {
  41. return m_Flags.m_fPartialUpdateBinary;
  42. }
  43. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  44. //
  45. // TODO - Comment this function!
  46. //
  47. //-----------------------------------------------------------------------------
  48. inline
  49. void
  50. CLocBinary::SetFPartialUpdateBinary(
  51. BOOL f)
  52. {
  53. m_Flags.m_fPartialUpdateBinary = f;
  54. }
  55. //-----------------------------------------------------------------------------
  56. //
  57. // Default conversion of one Binary to another format - it fails
  58. //
  59. //-----------------------------------------------------------------------------
  60. inline
  61. BOOL
  62. CLocBinary::Convert(CLocItem *)
  63. {
  64. return FALSE;
  65. }