apiw-sys 0.1.0

This crate provides core API bindings for Windows according to ECMA-234.
Documentation
use windows_sys::Win32::Graphics::Gdi as gdi;

/// Sets the pixel value in the destination bitmap to black
pub use gdi::R2_BLACK;

/// Sets the pixel value in the destination bitmap to white
pub use gdi::R2_WHITE;

/// Replaces the pixel value in the destination with the pixel value of the pen
pub use gdi::R2_COPYPEN;

/// Replaces the pixel value of the destination with the result of the
/// destination AND’ed with the INVERSE pixel value of the pen
pub use gdi::R2_MASKNOTPEN;

/// Replaces the pixel value of the destination with the result of the
/// destination bitmap AND’ed with the pixel value of the pen
pub use gdi::R2_MASKPEN;

/// Replaces the pixel value of the destination with the INVERSE of the
/// destination bitmap pixel value AND’ed with the pixel value of the pen
pub use gdi::R2_MASKPENNOT;

/// Replaces the pixel value of the destination with the result of the
/// destination bitmap OR’ed with the INVERSE pixel value of the pen
pub use gdi::R2_MERGENOTPEN;

/// Replaces the pixel value of the destination with the result of the
/// destination OR’ed with the pixel value of the pen
pub use gdi::R2_MERGEPEN;

/// Replaces the pixel value of the destination with the INVERSE of the
/// destination bitmap pixel value OR’ed with the pixel value of the pen
pub use gdi::R2_MERGEPENNOT;

/// The destination bitmap is not altered
pub use gdi::R2_NOP;

/// INVERTs the value of the destination bitmap pixel value
pub use gdi::R2_NOT;

/// Replaces the pixel value in the destination bitmap with the INVERSE of the
/// pixel value of the pen
pub use gdi::R2_NOTCOPYPEN;

/// Replaces the pixel value in the destination bitmap with the INVERSE result
/// of the destination bitmap AND’ed with the pixel value of the pen
pub use gdi::R2_NOTMASKPEN;

/// Replaces the pixel value of the destination bitmap with the INVERSE result
/// of the destination bitmap OR’ed with the pixel value of the pen
pub use gdi::R2_NOTMERGEPEN;

/// Replaces the pixel value of the destination bitmap with the INVERSE result
/// of the destination bitmap XOR’ed with the pixel value of the pen
pub use gdi::R2_NOTXORPEN;

/// Replaces the pixel value of the destination bitmap with the result of the
/// destination bitmap XOR’ed with the pixel value of the pen
pub use gdi::R2_XORPEN;