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.

82 lines
1.9 KiB

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