Vanilla.PDF  1.4.1
Cross-platform toolkit for creating and modifying PDF documents
Variables
Boolean types

Defines boolean type with its possible values. More...

Variables

const boolean_type VANILLAPDF_RV_FALSE
 Represents the boolean false value. More...
 
const boolean_type VANILLAPDF_RV_TRUE
 Represents the boolean true value. More...
 

Detailed Description

Defines boolean type with its possible values.

Variable Documentation

◆ VANILLAPDF_RV_FALSE

const boolean_type VANILLAPDF_RV_FALSE

Represents the boolean false value.

It shall respond to false value as defined in c++ standard. However, I recommend using this constant instead of not operator or any other constant, that may seem to work.

Examples:
extract.c, and filter.c.

◆ VANILLAPDF_RV_TRUE

const boolean_type VANILLAPDF_RV_TRUE

Represents the boolean true value.

It shall respond to true value as defined in c++ standard.

Examples:
extract.c.