CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
seekorigin.h
1
2#pragma once
3
4#include <system/details/enum_meta_info.h>
5
6namespace System { namespace IO {
7
10enum class SeekOrigin
11{
13 Begin = 0,
15 Current,
17 End
18};
19
20}} // namespace System::IO
21
22template<>
23struct EnumMetaInfo<System::IO::SeekOrigin>
24{
25 static ASPOSECPP_SHARED_API const std::array<std::pair<System::IO::SeekOrigin, const char16_t*>, 3>& values();
26};
SeekOrigin
Specifies the reference position in the stream relative to which the position to seek to is specified...
Definition: seekorigin.h:11
@ Begin
Beginning of the stream.
@ Current
Current stream position.
@ End
End of the stream.
Definition: db_command.h:9