home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / DOCJET.ZIP / data.z / DocJet.AWX / TEMPLATE / MAIN.CPP < prev    next >
Encoding:
Text File  |  1998-11-17  |  860 b   |  22 lines

  1.  
  2. // One might be given to ask, "What the heck is this??"
  3.  
  4. // Well, the deal is this:  Custom-AppWizards, like DocJet,
  5. //   can only construct projects that are like the existing
  6. //   project type "Win32 Applications", there's no way to
  7. //   make one based on a makefile.  If you don't have this
  8. //   file, the generator will actually still run, because
  9. //   the rule that causes it to run is a custom make rule,
  10. //   and those fire even if the executable fails to build.
  11. //
  12. // That's actually the way DocJet used to work, which was fine
  13. //   except that you'd always get these bogus warning messages
  14. //   about the fact that there are no source files.  In the
  15. //   end, having this bogus target is less bad than the constant
  16. //   appearance of the bogus error message.
  17.  
  18. int __stdcall WinMain( void *, void *, char *, int )
  19. {
  20.     return(0);
  21. }
  22.