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.

58 lines
1.7 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1991 - 1992.
  5. //
  6. // File: Cursor.Cxx
  7. //
  8. // Contents: Cursor classes
  9. //
  10. // Classes: CCursor
  11. //
  12. // History: 15-Apr-91 KyleP Created.
  13. //
  14. //----------------------------------------------------------------------------
  15. #include <pch.cxx>
  16. #pragma hdrstop
  17. DECLARE_INFOLEVEL ( cu )
  18. //+---------------------------------------------------------------------------
  19. //
  20. // Member: CCursor::WorkIdCount, public
  21. //
  22. // Returns: Estimated work id count (if possible) ???
  23. //
  24. // History: 27-Sep-91 BartoszM Created.
  25. //
  26. //----------------------------------------------------------------------------
  27. ULONG CCursor::WorkIdCount() { return(0); }
  28. //+-------------------------------------------------------------------------
  29. //
  30. // Member: CCursor::GetWeightVector, public
  31. //
  32. // Effects: Returns the weights from a vector cursor. No effect
  33. // for non-vector cursors.
  34. //
  35. // Arguments: [pulVector] -- Pointer to array of ULONG into which the
  36. // vector elements are returned.
  37. //
  38. // Returns: The number of elements stored in [pulVector].
  39. //
  40. // History: 15-Jul-92 KyleP Created
  41. //
  42. // Notes: This method only does something interesting for the
  43. // vector cursor. For the vector cursor, it returns the
  44. // individual ranks for each element of the vector in
  45. // addition to the composite rank.
  46. //
  47. //--------------------------------------------------------------------------
  48. ULONG CCursor::GetRankVector( LONG *, ULONG )
  49. {
  50. return( 0 );
  51. }