The RPC_EPrintPropertyType enumeration specifies the type of the value contained by a Job Named Property (section 3.1.1).<82>
typedef enum
{
kRpcPropertyTypeString = 1,
kRpcPropertyTypeInt32,
kRpcPropertyTypeInt64,
kRpcPropertyTypeByte,
kRpcPropertyTypeBuffer
} RPC_EPrintPropertyType;
kRpcPropertyTypeString: The property value is a string.
kRpcPropertyTypeInt32: The property value is a signed 32-bit integer.
kRpcPropertyTypeInt64: The property value is a signed 64-bit integer.
kRpcPropertyTypeByte: The property value is a byte.
kRpcPropertyTypeBuffer: The property value consists of an array of bytes contained in a buffer.