调整数据类型和接口函数命名规范
This commit is contained in:
@@ -12,6 +12,7 @@ add_executable(${TEST_APP_NAME}
|
||||
|
||||
target_include_directories(${TEST_APP_NAME} SYSTEM
|
||||
PRIVATE ${deps_INCLUDE_DIRS}
|
||||
PRIVATE ${INCLUDE_DIR}
|
||||
)
|
||||
target_include_directories(${TEST_APP_NAME}
|
||||
PRIVATE ${SOURCE_DIR}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
#include "core/runtime.h"
|
||||
|
||||
int main(void) {
|
||||
wm_runtime_t runtime = {0};
|
||||
wm_runtime_init(&runtime);
|
||||
runtime_t runtime = {0};
|
||||
runtime_init(&runtime, nullptr);
|
||||
|
||||
wm_runtime_shutdown(&runtime);
|
||||
runtime_shutdown(&runtime);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user