GadgetSeed
0.9.6
queue.h
[詳解]
1
/** @file
2
@brief タスクキュー操作
3
4
GadgetSeed のタスクキュー操作
5
6
@date 2011.03.17
7
@author Takashi SHUDO
8
*/
9
10
#ifndef QUEUE_H
11
#define QUEUE_H
12
13
struct
st_queue
{
14
struct
st_queue
*next;
15
struct
st_queue
*prev;
16
};
///< キュー構造
17
18
#endif // QUEUE_H
st_queue
キュー構造
Definition:
queue.h:13
include
task
queue.h
構築:
1.8.13