HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
seek_whence.hpp
1
2
3#pragma once
4
5#include "../macros.hpp"
6
7hi_export_module(hikogui.file.seek_whence);
8
9hi_export namespace hi { inline namespace v1 {
10
14hi_export enum class seek_whence {
15 begin,
16 current,
17 end
18};
19
20}}
seek_whence
The position in the file to seek from.
Definition seek_whence.hpp:14
@ current
Continue from the current position.
@ end
Start from the end of the file.
@ begin
Start from the beginning of the file.
The HikoGUI namespace.
Definition array_generic.hpp:20
DOXYGEN BUG.
Definition algorithm_misc.hpp:20