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

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