2002-10-12 11:37:38 +00:00
|
|
|
#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;
|
2005-08-17 19:52:56 +00:00
|
|
|
void* m_clientobject1;
|
2002-10-12 11:37:38 +00:00
|
|
|
void* m_auxilary_info;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__SM_CLIENTOBJECT_INFO_H
|
2002-10-30 02:07:20 +00:00
|
|
|
|