2015-04-01
11:47 PM
- last edited on
2023-08-01
01:16 PM
by
Doreena Deng
GSErrCode __ACENV_CALL Initialize (void) { ... GSErrCode err = ACAPI_Notify_CatchProjectEvent (API_AllProjectNotificationMask, NotificationHandler); ... }on Initialize and I've added notification handler:
static GSErrCode __ACENV_CALL NotificationHandler (API_NotifyEventID notifID, Int32 param) { switch (notifID) { case APINotify_New: ... case APINotify_Open: ... } }Problem is with Initialize method, it isn't executed automatically after ArchiCAD starts.
2015-04-07 04:17 PM
Lukasz wrote:
Problem is with Initialize method, it isn't executed automatically after ArchiCAD starts.
2015-04-13 10:26 PM