Commit c2bb86b4 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov

menu objects

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@57682 954022d7-b5bf-4e40-9824-e11837661b57
parent 52659378
......@@ -1007,4 +1007,29 @@ namespace NSEditorApi
};
}
namespace NSEditorApi
{
class CAscMenuEvent
{
public:
int m_nType;
void* m_pData;
public:
CAscMenuEvent()
{
m_nType = -1;
m_pData = NULL;
}
~CAscMenuEvent()
{
if (NULL != m_pData)
delete m_pData;
}
};
}
#define ASC_MENU_EVENT_TYPE_TEXTPR 1
#define ASC_MENU_EVENT_TYPE_PARAPR 2
#endif //_BUILD_EDITOR_API_CROSSPLATFORM_H_
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment