![]() |
Vanilla.PDF
2.2.0
Cross-platform toolkit for creating and modifying PDF documents
|
Represents a collection of ByteRangeHandle. More...
| error_type CALLING_CONVENTION | ByteRangeCollection_Create (ByteRangeCollectionHandle **result) |
| Create an empty ByteRangeCollection. | |
| error_type CALLING_CONVENTION | ByteRangeCollection_Append (ByteRangeCollectionHandle *handle, ByteRangeHandle *byte_range) |
| Append a ByteRange to the end of the collection. | |
| error_type CALLING_CONVENTION | ByteRangeCollection_Insert (ByteRangeCollectionHandle *handle, size_type at, ByteRangeHandle *byte_range) |
| Insert a ByteRange at a specific position in the collection. | |
| error_type CALLING_CONVENTION | ByteRangeCollection_Remove (ByteRangeCollectionHandle *handle, size_type at) |
| Remove a ByteRange at a specific position. | |
| error_type CALLING_CONVENTION | ByteRangeCollection_Clear (ByteRangeCollectionHandle *handle) |
| Remove all ByteRanges from the collection. | |
| error_type CALLING_CONVENTION | ByteRangeCollection_GetSize (ByteRangeCollectionHandle *handle, size_type *result) |
| Get size of byte range collection. | |
| error_type CALLING_CONVENTION | ByteRangeCollection_GetValue (ByteRangeCollectionHandle *handle, size_type at, ByteRangeHandle **result) |
| Get single byte range from array at specific position. | |
| error_type CALLING_CONVENTION | ByteRangeCollection_Release (ByteRangeCollectionHandle *handle) |
| Decrement the internal reference counter. | |
Additional Inherited Members | |
Public Member Functions inherited from IUnknownHandle | |
| error_type CALLING_CONVENTION | IUnknown_AddRef (IUnknownHandle *handle) |
| Increment the internal reference counter. | |
Related Symbols inherited from IUnknownHandle | |
| error_type CALLING_CONVENTION | IUnknown_Release (IUnknownHandle *handle) |
| Decrement the internal reference counter. | |
Represents a collection of ByteRangeHandle.
ByteRangeCollection is used to specify exact byte ranges for digest calculation in digital signatures. Multiple discontiguous byte ranges are used to describe a digest that does not include the signature value itself.
| error_type CALLING_CONVENTION ByteRangeCollection_Create | ( | ByteRangeCollectionHandle ** | result | ) |
Create an empty ByteRangeCollection.
| result | Output ByteRangeCollection handle |
|
related |
Append a ByteRange to the end of the collection.
| handle | ByteRangeCollection handle |
| byte_range | ByteRange to append |
|
related |
Insert a ByteRange at a specific position in the collection.
| handle | ByteRangeCollection handle |
| at | Position to insert at |
| byte_range | ByteRange to insert |
|
related |
Remove a ByteRange at a specific position.
| handle | ByteRangeCollection handle |
| at | Position to remove from |
|
related |
Remove all ByteRanges from the collection.
| handle | ByteRangeCollection handle |
|
related |
Decrement the internal reference counter.
When the internal counter reaches zero the object is deleted. Releasing already disposed object causes undefined behavior.