mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 16:59:04 +00:00
23 lines
512 B
C++
23 lines
512 B
C++
/**
|
|
* @file SeekOrigin.h
|
|
* @brief Declaration of tc::io::SeekOrigin
|
|
* @author Jack (jakcron)
|
|
* @version 0.1
|
|
* @date 2020/01/22
|
|
**/
|
|
#pragma once
|
|
|
|
namespace tc { namespace io {
|
|
|
|
/**
|
|
* @enum SeekOrigin
|
|
* @brief Specifies the position in a stream to use for seeking.
|
|
**/
|
|
enum class SeekOrigin
|
|
{
|
|
Begin = 0, /**< Specifies the beginning of a stream. */
|
|
Current = 1, /**< Specifies the current position within a stream. */
|
|
End = 2 /**< Specifies the end of a stream. */
|
|
};
|
|
|
|
}} // namespace tc::io
|