home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_05 / 2n05012c < prev    next >
Text File  |  1991-04-02  |  397b  |  21 lines

  1. /*
  2.  * LoadNonExistentResource()
  3.  *   Loads a non-existent resource in, and attempts to delete it.
  4.  *
  5.  * Assumptions:
  6.  *   hInst is the instance of our program
  7.  *   The cursor 'BOGUS' does not exist.
  8.  *
  9.  */
  10.  
  11. LoadNonExistentResource(HANDLE hInst)
  12. {
  13.     HCURSOR hCurse;
  14.  
  15.     /*----------------------*/
  16.  
  17.     hCurse = LoadCursor(hInst,"BOGUS");
  18.  
  19.     DeleteObject((HANDLE)hCurse);
  20. }
  21.