hostsupport/hostopengles20/src/object.h
branchbug235_bringup_0
changeset 77 b0395290e61f
parent 76 24381b61de5c
equal deleted inserted replaced
76:24381b61de5c 77:b0395290e61f
    35 {
    35 {
    36 	GLuint name;
    36 	GLuint name;
    37 	struct DGLObject* next;
    37 	struct DGLObject* next;
    38 } DGLObject;
    38 } DGLObject;
    39 
    39 
       
    40 #ifdef __cplusplus
       
    41 extern "C"
       
    42 {
       
    43 #endif /* __cplusplus */
       
    44 
    40 void		DGLObject_insert(DGLObject** root, DGLObject* object);
    45 void		DGLObject_insert(DGLObject** root, DGLObject* object);
    41 DGLObject*	DGLObject_remove(DGLObject** root, GLuint name);
    46 DGLObject*	DGLObject_remove(DGLObject** root, GLuint name);
    42 DGLObject*	DGLObject_find(DGLObject* root, GLuint name);
    47 DGLObject*	DGLObject_find(DGLObject* root, GLuint name);
    43 
    48 
       
    49 #ifdef __cplusplus
       
    50 }
       
    51 #endif /* __cplusplus */
       
    52 
    44 #endif /* OBJECT_H_ */
    53 #endif /* OBJECT_H_ */