mirror of
https://github.com/openharmony/bundlemanager_bundle_framework_lite.git
synced 2026-07-20 23:55:24 -04:00
IssueNo:#I3IV6W
Description:Add callback interface Sig:startup Feature or Bugfix:Bugfix Binary Source:No
This commit is contained in:
@@ -67,6 +67,15 @@ const unsigned int RETRY_TIMES = 10;
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#define Malloc(a) malloc(a)
|
||||
#define Free(a) \
|
||||
do { \
|
||||
if (a != nullptr) { \
|
||||
(void) free((void *)a); \
|
||||
a = nullptr; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#define APP_ERRCODE_EXTRA(code1, code2)
|
||||
#define APP_EVENT(code1)
|
||||
#define RecordAbiityInfoEvt(code1)
|
||||
|
||||
Reference in New Issue
Block a user