home *** CD-ROM | disk | FTP | other *** search
/ DTP Toolbox / DTPToolbox.iso / utilities / archiveutils / wmf.lha / src / window.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-22  |  410 b   |  24 lines

  1. /*
  2. /*
  3. * Virtual Window for Windows Metafile (WMF).
  4. *
  5. * $Log: window.h,v $
  6. *  Revision 1.1  1994/06/18  02:45:08  JFusco
  7. *  Initial revision
  8. *
  9. *
  10. */
  11.  
  12. #ifndef WMF_WMF_INC
  13. #include "wmf.h" /* Defines types. */
  14. #endif
  15.  
  16. /* Virtual window origin and extent. */
  17. extern yx_pair_t WindowOrg, WindowExt;
  18.  
  19. /* Integer scaling. */
  20. extern struct scale { long num, den; } Scale;
  21.  
  22. void InitVirtualWindow( wmf_place_hdr_t * );
  23.  
  24.