Source code of Windows XP (NT5)
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.

34 lines
763 B

  1. //------------------------------------------------------------------------------
  2. //
  3. // File: dllvars.h
  4. // Copyright (C) 1995-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Purpose:
  8. // Global variables and functions for the parser DLL
  9. //
  10. // YOU SHOULD NOT NEED TO TOUCH ANYTHING IN THIS FILE. This code contains
  11. // nothing parser-specific and is used only by the framework.
  12. //
  13. // Owner:
  14. //
  15. //------------------------------------------------------------------------------
  16. #ifndef DLLVARS_H
  17. #define DLLVARS_H
  18. void IncrementClassCount();
  19. void DecrementClassCount();
  20. #ifdef __DLLENTRY_CPP
  21. #define __DLLENTRY_EXTERN
  22. #else
  23. #define __DLLENTRY_EXTERN extern
  24. #endif
  25. __DLLENTRY_EXTERN HMODULE g_hDll;
  26. __DLLENTRY_EXTERN PUID g_puid;
  27. #endif // DLLVARS_H