home *** CD-ROM | disk | FTP | other *** search
/ PC Press 1997 July / Sezamfile97_2.iso / windows / program / activex / axtsamp.exe / TSBRANCH.EXE / EXESKEL / EXESKEL.TXT < prev    next >
Text File  |  1997-01-05  |  2KB  |  55 lines

  1.  
  2. EXESKEL - Win32 EXE Skeleton
  3.  
  4.  
  5. SUMMARY
  6. =======
  7.  
  8. The EXESKEL sample introduces the basic application skeleton that can be
  9. used as a point of departure for more complex Win32 applications. It is
  10. used as a base for the ActiveX Tutorial series of code samples. Of
  11. particular interest in this code sample is the support for initializing
  12. and uninitializing the COM Libraries. The general use of APPUTIL to
  13. construct this application is also worthy of study.
  14.  
  15. For functional descriptions and a tutorial code tour of EXESKEL, see the
  16. Code Tour section in EXESKEL.HTM. For details on the external user
  17. operation of EXESKEL, see both the Usage and Operation sections in
  18. EXESKEL.HTM. To read EXESKEL.HTM, run TUTORIAL.EXE in the main tutorial
  19. directory and click the EXESKEL lesson in the table of lessons. You can
  20. also achieve the same thing by clicking the EXESKEL.HTM file after
  21. locating the main tutorial directory in the Windows Explorer.
  22.  
  23. In general, to set up your system to build and test the code samples in
  24. this ActiveX Tutorial series, see TUTORIAL.HTM for details. The
  25. accompanying makefile is Microsoft NMAKE-compatible. To create a debug
  26. build of EXESKEL, issue the NMAKE command at the command prompt.
  27.  
  28. Usage
  29. -----
  30.  
  31. EXESKEL is an .EXE file that you can execute directly from Windows or from
  32. the command prompt. No command line arguments are recognized by EXESKEL.
  33.  
  34.  
  35. FILES
  36. =====
  37.  
  38. Files          Description
  39.  
  40. EXESKEL.TXT    This file.
  41. MAKEFILE       The generic makefile for building the code sample
  42.                application of this tutorial lesson.
  43. EXESKEL.H      The include file for the EXESKEL application. Contains
  44.                class declarations, function prototypes, and resource
  45.                identifiers.
  46. EXESKEL.CPP    The main implementation file for EXESKEL.EXE. Has WinMain
  47.                and CMainWindow implementation.
  48. EXESKEL.RC     The application resource definition file.
  49. EXESKEL.ICO    The application icon resource.
  50.  
  51. EXESKEL is meant to be a generic point of departure for building Win32 C++
  52. applications that support COM/OLE. It is the basic skeleton that is built
  53. upon in subsequent code samples in this tutorial series. You can study the
  54. code comments to learn more about this C++ application skeleton.
  55.