AM Daemon ライブラリリファレンス
OptionImageInfo.h
[詳解]
1 /// @file
2 /// @brief オプションイメージ情報構造体 OptionImageInfo のヘッダ。
3 ///
4 /// Copyright(C)SEGA
5 
6 #ifndef AMDAEMON_OPTIONIMAGEINFO_H
7 #define AMDAEMON_OPTIONIMAGEINFO_H
8 
9 #include "amdaemon/env.h"
10 #include "amdaemon/AppImageDef.h"
11 #include "amdaemon/util/DateTime.h"
12 
13 namespace amdaemon
14 {
15 /// @addtogroup g_appimage
16 /// @{
17 
18  /// @brief オプションイメージ情報構造体。
19  /// @note memcpy 可能。
20  /// @internal ライブラリ実装メモ: この型を直接共有メモリに配置する。
22  {
23  ::amdaemon::util::DateTime creationTime; ///< イメージ作成日時。
24  wchar_t name[OptionImageNameLength + 1]; ///< 識別名。
25  };
26 
27 /// @}
28 } // namespace amdaemon
29 
30 #endif // AMDAEMON_OPTIONIMAGEINFO_H
::amdaemon::util::DateTime creationTime
イメージ作成日時。
Definition: OptionImageInfo.h:23
Daemonライブラリの環境定義を行うヘッダ。
AM Daemon ライブラリクラス群の基底名前空間。
Definition: Log.h:13
マイクロ秒精度の日付時刻を表す構造体 DateTime のヘッダ。
Definition: DateTime.h:37
オプションイメージ情報構造体。
Definition: OptionImageInfo.h:21
アプリイメージ関連の定数定義を提供するヘッダ。
マイクロ秒精度の日付時刻を表す構造体 DateTime のヘッダ。
wchar_t name[OptionImageNameLength+1]
識別名。
Definition: OptionImageInfo.h:24
static const std::size_t OptionImageNameLength
オプションイメージ識別名文字数。
Definition: AppImageDef.h:20