globals.cpp 627 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. #include "ParserPch.h"
  6. // strings for builtin names
  7. #define HASH_NAME(name, hashCS, hashCI) \
  8. const StaticSym g_ssym_##name = \
  9. { \
  10. hashCS, \
  11. sizeof(#name) - 1, \
  12. OLESTR(#name) \
  13. };
  14. #include "objnames.h"
  15. #undef HASH_NAME