forked from bartvdbraak/blender
f1c4f705a1
So we should be all set now :) Kent -- mein@cs.umn.edu
17 lines
351 B
C
17 lines
351 B
C
#ifndef __SM_CLIENTOBJECT_INFO_H
|
|
#define __SM_CLIENTOBJECT_INFO_H
|
|
|
|
/**
|
|
* Client Type and Additional Info. This structure can be use instead of a bare void* pointer, for safeness, and additional info for callbacks
|
|
*/
|
|
|
|
struct SM_ClientObjectInfo
|
|
{
|
|
int m_type;
|
|
void* m_clientobject;
|
|
void* m_auxilary_info;
|
|
};
|
|
|
|
#endif //__SM_CLIENTOBJECT_INFO_H
|
|
|