globals.h 593 B

123456789101112131415161718
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #pragma once
  6. struct StaticSym
  7. {
  8. ulong luHash;
  9. ulong cch;
  10. OLECHAR sz[];
  11. };
  12. // Builtin symbols.
  13. #define HASH_NAME(name, hashCS, hashCI) extern const StaticSym g_ssym_##name;
  14. #include "objnames.h"
  15. #undef HASH_NAME