home *** CD-ROM | disk | FTP | other *** search
/ Mega A/V / mega_av.zip / mega_av / GRAPHUTL / WINS1651.ZIP / WINSRC.DOC < prev    next >
Text File  |  1991-06-14  |  3KB  |  59 lines

  1. Let's start with the caveats:
  2.  
  3. You need either Microsoft C 5.1 or better (I use 6.00A) and the
  4. Microsoft Windows 3.0 SDK or Borland's new C++ product for Windows
  5. (which Mark Peterson uses) to rebuild WINFRACT from this ZIP file.
  6. You build Winfract with Microsoft's product using the "makewin.bat"
  7. command.  You build Winfract with Borland's product using the PRJ
  8. file supplied by Mark.
  9.  
  10.  
  11. ---------
  12.  
  13. How this program works:
  14.  
  15. First of all, we got lucky.  Fractint-for-DOS has, for some time, been
  16. structured such that the working modules periodically call a routine 
  17. called 'keypressed()'.  That routine both lets the calling program know if
  18. there is a keypress or mouse movement waiting that is of interest to the
  19. calling routine, and it handles the help (F1) and status (TAB) routines in a
  20. manner invisible to the calling routine.
  21.  
  22. In the Windows environment, 'keypressed()' performs a 'peekmessage()' 
  23. function, checking for and processing any user activity, and returns
  24. a value indicating that either nothing of interest has happened, or that
  25. the calling program should terminate and return to the main routine which
  26. will actually decide what to do.
  27.  
  28. Aside from the routines that are taken directly from Fractint-for-DOS,
  29. the following routines are Windows-specific:
  30.  
  31. winsrc.doc      - you're reading it right now
  32. makefrac.bat    - run this routine to make a new version of WINFRACT
  33. winfract.prj    - PRJ file which you use if you are using Borland's "C"
  34. winfract.mak    - the WINFRACT "make" file
  35. winfract.def    - the WINFRACT "def" file
  36. winfract.rc     - the WINFRACT "resource compiler" file
  37. winfract.ico    - the WINFRACT "icon"
  38. winfract.rtf    - the source for the HELP text
  39. winfract.hpj    - the project for the HELP text
  40. winfract.h      - generic WINFRACT include file
  41. select.h        - used by the zoom-box routines (stolen from the Windows SDK)
  42. winfract.lnk    - the list of files required by the LINK step 
  43. winlib.lst      - used to build a LIB of FFD routines
  44. winfract.c      - the main WINFRACT routine
  45. dialog.c        - the first of two dialog modules
  46. dialog2.c       - the second of two dialog modules
  47. windos.c        - Windows routines that fake DOS routines
  48.                   (routines such as 'keypressed()' are in here)
  49. mainfrac.c      - the main "Fractint" driver routine (called by winfract.c)
  50. select.c        - Zoom-box routines (stolen from the Windows SDK)
  51. wgeneral.asm    - WINFRACT assembler code
  52. wgeneral.obj    - compiled version of same (so you won't need an assembler)
  53. mathtool.c      - Mark Peterson's Math-Tools and other code
  54. mathtool.h      - include file for the above
  55. mathtool.rtf    - Help file for the above
  56. mathtool.ico    - Icon file for the above
  57. profile.c       - SSTOOLS.INI profiler
  58. profile.h       - include file for the above
  59.