DestroyExtProcess function
退出(销毁)当前扩展程序进程
Parameters:NULL
Return value:
- Type:void
- Text:通常情况下 DestroyExtProcess function 不会返回
C++ code:
#include <h.studio>
#include <h.process>
int hello(){
output("hello world!");
// Or call Exitext function defined in h.studio
DestroyExtProcess();
return RETEXT_NULL;
}