winprint 0.2.0

A crate for printing to a Windows printer device using Windows API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::{
    define_feature_option_pack,
    document::{ParameterInit, PrintFeatureOption, NS_PSK},
    PredefinedPageOutputColor,
};
use xml::name::OwnedName;

define_feature_option_pack!(
    OwnedName::qualified("PageOutputColor", NS_PSK, Some("psk")),
    PageOutputColor,
    PredefinedPageOutputColor
);