OSDN Git Service

65ab9d802f339188e82e7923e7e0c45df94c1425
[hos/hos-v4a.git] / aplfw / system / handle / handleobj_create.c
1 /** 
2  *  Hyper Operating System  Application Framework
3  *
4  * @file  handle.h
5  * @brief %jp{ハンドルオブジェクト}
6  *
7  * Copyright (C) 2006 by Project HOS
8  * http://sourceforge.jp/projects/hos/
9  */
10
11
12 #include "handleobj.h"
13
14
15 /* コンストラクタ */
16 void HandleObj_Create(C_HANDLEOBJ *self, const T_HANDLEOBJ_METHODS *pMethods)
17 {
18         self->pMethods = pMethods;
19 }
20
21
22
23 /* end of file */