DIRS.TXT
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #+---------------------------------------------------------------------------
  2. #
  3. #  Microsoft Windows
  4. #  Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. #
  6. #  File:       dirs.txt
  7. #
  8. #  Contents:   description of the MFract directories
  9. #
  10. #  History:     4-14-94   stevebl   Created
  11. #
  12. #----------------------------------------------------------------------------
  13. bin:
  14.     Target directory for the .EXE, .HLP and .DLLs.
  15. winhlprs:
  16.     Various helper classes to simplify writing Windows code in C++.
  17.     Produces a library called winhlprs.lib.
  18. idl:
  19.     The custom interfaces used by MFract and its fractal engines.
  20.     Produces a set of .h files and a library called fguids.lib which
  21.     contains all the IIDs for the interfaces.
  22.     Run build -nmake clean in this directory to delete midl generated files.
  23. app:
  24.     Source files for the main application.
  25.     Produces MFract.exe.
  26. help:
  27.     Produces the help file.
  28. engines:
  29.     Sources for the various fractal engine objects.
  30. enginesmandel:
  31.     Sources for the Mandelbrot Fractal engine.
  32.     Produces mandel.dll.
  33. enginesjulia:
  34.     Sources for the Julia Set Fractal engine.
  35.     Produces julia.dll.
  36. enginesquad:
  37.     Sources for the Quadrant Fractal engine.
  38.     Produces quad.dll.
  39.     This component is used by fractal engines such as the Mandelbrot and Julia
  40.     Set objects to simplify the amount of code that they have to write.
  41.     Using this component allows the Mandelbrot and Julia Sets to get away with
  42.     providing only a property dialog implementation, persistence, and a simple
  43.     point-to-color mapping function.  The Quadrant engine takes care of
  44.     iterating across the graph, drawing the points, and optimizing areas where
  45.     possible.
  46. enginesplasma:
  47.     Sources for the Plasma Fractal engine.
  48.     Produces plasma.dll.
  49. enginesrgen:
  50.     Sources for the Recursive Generator engine.
  51.     Produces rgen.dll.