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.

62 lines
1.5 KiB

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORPORATION, 1998
  4. *
  5. * TITLE: UICOMMON.H
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: ShaunIv
  10. *
  11. * DATE: 4/19/1999
  12. *
  13. * DESCRIPTION: Common include file for the UI library
  14. *
  15. *******************************************************************************/
  16. #ifndef __UICOMMON_H_INCLUDED
  17. #define __UICOMMON_H_INCLUDED
  18. // Global new, delete handlers. Use LocalAlloc.
  19. #include "wianew.h"
  20. // Various macros and helper functions that are in the WiaUiUtil namespace
  21. #include "miscutil.h"
  22. // Quick and dirty way to get a single string or long property from an IUnknown *
  23. #include "pshelper.h"
  24. // Function to create a scaled DIB (good for thumbnails)
  25. #include "rescale.h"
  26. // A handy class for passing around resource ids that can be either numeric or string
  27. #include "resid.h"
  28. // Dynamically sized array class
  29. #include "simarray.h"
  30. // BSTR wrapper
  31. #include "simbstr.h"
  32. // Simple critical section wrapper with extremely handy auto critical sections
  33. #include "simcrit.h"
  34. // Dynamic singly linked list template class, and derivatives: queue and stack
  35. #include "simlist.h"
  36. // A class for setting and getting registry variables
  37. #include "simreg.h"
  38. // String classes
  39. #include "simstr.h"
  40. // String tokenizer
  41. #include "simtok.h"
  42. #include "waitcurs.h"
  43. #include "errors.h"
  44. // Delimited string tokenizer class
  45. #include "delimstr.h"
  46. #endif // __UICOMMON_H_INCLUDED