home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / RESDLL.ZIP / README.TXT < prev    next >
Text File  |  1992-10-15  |  639b  |  17 lines

  1.  Sample: Creating Resource-Only DLLs
  2.  
  3. Summary:
  4.  
  5. The RESDLL sample shows how to create a resource-only
  6. dynamic link library (DLL). In short, this is accomplished
  7. by creating and resource-compiling a resource (.RC) file,
  8. creating and compiling a source code (.C) file containing
  9. a simple DLL entry point, and then linking the resulting
  10. .RBJ and .OBJ files with the appropriate libraries to
  11. create the DLL.
  12.  
  13. The MAIN.EXE program tests THE_DLL.DLL by loading it and
  14. referencing the DLL's icon, cursor, and bitmap. The icon
  15. and cursor are used by the registered window class, and
  16. the bitmap is used in painting the client area.
  17.