mirror of
https://github.com/unidoc/unipdf.git
synced 2025-05-02 22:17:06 +08:00
16 lines
411 B
Go
16 lines
411 B
Go
![]() |
/*
|
||
|
* This file is subject to the terms and conditions defined in
|
||
|
* file 'LICENSE.md', which is part of this source code package.
|
||
|
*/
|
||
|
|
||
|
package segments
|
||
|
|
||
|
// OrganizationType is the enum for the stream sequence organization.
|
||
|
type OrganizationType uint8
|
||
|
|
||
|
// Organization types defined in D.4.2. - File header bit 0 defines the stream sequence organisation.
|
||
|
const (
|
||
|
ORandom OrganizationType = iota
|
||
|
OSequential
|
||
|
)
|