# MyMarkDown **Repository Path**: yn486/my-mark-down ## Basic Information - **Project Name**: MyMarkDown - **Description**: Every day, bit by bit, will not let you down. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2025-10-09 - **Last Updated**: 2025-10-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README to do... | 名称 | 值 | 说明 | | -------- | -------- | -------- | | GET_FULL_INSIGHT_INTENT | 1 | 查询[InsightIntentInfo](#insightintentinfo20)中的全部信息。 | | GET_SUMMARY_INSIGHT_INTENT | 2 | 查询[InsightIntentInfo](#insightintentinfo20)中的部分信息,具体差异见表1。 | | GET_FULL_INSIGHT_INTENT | 0x00000001 | 查询[InsightIntentInfo](#insightintentinfo20)中的全部信息,不包括entities信息,查询entities信息请使用GET_ENTITY_INFO。 | | GET_SUMMARY_INSIGHT_INTENT | 0x00000002 | 查询[InsightIntentInfo](#insightintentinfo20)中的部分信息,具体差异见表1。 | | GET_ENTITY_INFO | 0x00000004 | 查询[EntityInfo](#entityinfo20)的信息,不可单独使用,必选结合GET_FULL_INSIGHT_INTENT或者GET_SUMMARY_INSIGHT_INTENT使用。例如`GET_FULL_INSIGHT_INTENT \| GET_ENTITY_INFO`。 | Ability Kit C API 分为AbilityBase、ChildProcess、AbilityRuntime三个模块。 AbilityBase(done) ├── ability_base_common.h(done) ├── want.h(done) │ └── AbilityBase_Element(done) ChildProcess(done) ├── native_child_process.h(done) │ ├── NativeChildProcess_Args(done) │ ├── NativeChildProcess_Fd(done) │ ├── NativeChildProcess_FdList(done) │ └── NativeChildProcess_Options │ └── Ability_ChildProcessConfigs AbilityRuntime(done) ├── ability_runtime_common.h(done) ├── application_context.h(done) ├── context_constant.h(done) └── start_options.h(done)