home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ibmodf.zip / CNTNRPRT.ZIP / PRINT.H < prev    next >
C/C++ Source or Header  |  1994-07-22  |  1KB  |  31 lines

  1. #define ID_PRINT                         300
  2. #define IDD_PRINT_QUEUE                  301
  3. #define IDD_PRINT_OPTIONS                302
  4. #define IDD_PRINT_HELP                   303
  5.  
  6.  
  7.   //--------------------------------------------------------------------------
  8.   // :type res=&IDT_PRNINFO. name='PRNINFO' text='Print Information'.
  9.   // :p.
  10.   // This structure contains printer :hp1.hdc:ehp1. and :hp1.hps:ehp1. a s
  11.   // used by the ViewPrint* functions. :hp1.bounds:ehp1. defines the valid
  12.   // printing area, output should be scaled to fit this area. :hp1.somMaster:ehp
  13.   // is the top-level object in the print heirarchy, and :hp1.pagenum:ehp1.
  14.   // is a count of pages printed thus far.
  15.   // :pcxmp.
  16.      #define PRNINFO_STRING_LENGTH   80
  17.      //typedef struct {
  18.      class PRNINFO {
  19.         public:
  20.         HDC       hdc;
  21.         HPS       hps;
  22.         RECTL     bounds;
  23.         //SOMObject somMaster;
  24.         SHORT     pagenum;
  25.      };
  26.      typedef PRNINFO* PPRNINFO;
  27.   // :epcxmp.
  28.   // :etype.
  29.  
  30.  
  31.