home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SOURCE / CLASSES / CURSOR.PRG < prev    next >
Text File  |  1994-05-22  |  548b  |  23 lines

  1. #include "FiveWin.ch"
  2.  
  3. //----------------------------------------------------------------------------//
  4.  
  5. CLASS TCursor
  6.  
  7.    DATA   hCursor
  8.  
  9.    METHOD New( cResName ) CONSTRUCTOR
  10.    METHOD Release() INLINE DestroyCursor( ::hCursor ), ::hCursor := 0
  11.  
  12. ENDCLASS
  13.  
  14. //----------------------------------------------------------------------------//
  15.  
  16. METHOD New( cResName ) CLASS TCursor
  17.  
  18.    ::hCursor = LoadCursor( GetResources(), cResName )
  19.  
  20. return nil
  21.  
  22. //----------------------------------------------------------------------------//
  23.