Windows 3.1 Device Drivers (ddag31qh.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
BINNAMES
                                                     Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
typedef struct tagBINNAMES {
    short BinList[CBINMAX];
    char PaperNames[CBINMAX][CCHBINNAME]
} BINNAMES;
 
The BINNAMES structure contains paper-bin identifiers and names. The
structure consists of two arrays: an array of 16-bit values specifying the
paper-bin identifiers, and an array of paper-bin names.
 
Member      Description
────────────────────────────────────────────────────────────────────────────
 
BinList     Specifies an array of 16-bit values specifying the paper-bin
            identifiers. The number of elements in the array (CBINMAX) must
            be specified by the lpInData parameter of the ENUMPAPERBINS
            escape.
 
PaperNames  Specifies an array of null-terminated paper-bin names. The
            number of elements in the array (CBINMAX) must be specified by
            the lpInData parameter of the ENUMPAPERBINS escape. The maximum
            number of characters in each name (CCHBINNAME) is 24.
 
See Also
 
ENUMPAPERBINS
 
 
                                      ♦