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.

38 lines
627 B

  1. //-------------------------------------------------------------------
  2. //
  3. // File: SelRange.h
  4. //
  5. // Contents:
  6. // This file contians Selection Range handling definitions.
  7. //
  8. // History:
  9. // 14-Oct-94 MikeMi Created
  10. //
  11. //-------------------------------------------------------------------
  12. #ifndef __SELRANGE_H__
  13. #define __SELRANGE_H__
  14. #include <windows.h>
  15. #include <limits.h>
  16. #define SELRANGE_MINVALUE 0
  17. #define SELRANGE_MAXVALUE LONG_MAX - 2
  18. #define SELRANGE_ERROR LONG_MAX
  19. typedef HANDLE HSELRANGE;
  20. #ifdef __cplusplus
  21. extern "C"
  22. {
  23. #endif
  24. ILVRange *LVRange_Create( );
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif