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.

64 lines
1.6 KiB

  1. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2. Copyright (c) 1989-1999 Microsoft Corporation
  3. Module Name:
  4. resmgr.hxx
  5. Abstract:
  6. The stub resource manager.
  7. Notes:
  8. History:
  9. VibhasC Aug-08-1993 Created.
  10. ----------------------------------------------------------------------------*/
  11. #ifndef __RESMGR_HXX__
  12. #define __RESMGR_HXX__
  13. /*
  14. Notes:
  15. Local variables, parameters, global variables etc are used by the stub
  16. for various operations within the stub. These are treated by the code
  17. generator as resources and maintained internally by the resource manager.
  18. Resources can be of various types:
  19. . Global Resources.
  20. These correspond to global variables eg implicit handles.
  21. . Local Resources.
  22. These are local variables allocated by the stubs.
  23. . Parameter Resources.
  24. These are parameters passed by the user.
  25. Each resource can be a simple resource (variables of base types, pointers)
  26. or compond type, eg structures etc.
  27. */
  28. /****************************************************************************
  29. * include files
  30. ***************************************************************************/
  31. #include "nulldefs.h"
  32. extern "C"
  33. {
  34. #include <stdio.h>
  35. }
  36. /****************************************************************************
  37. * definitions.
  38. ***************************************************************************/
  39. #define GLOBAL_RESOURCE_ID 0
  40. #define LOCAL_RESOURCE_ID 1
  41. #define PARAM_RESOURCE_ID 2
  42. class RESMGR
  43. {
  44. };
  45. #endif // __RESMGR_HXX__