Link Search Menu Expand Document

extern “C” __declspec(dllexport) bool enuRemoveTask(wchar_t* pStrTaskID)

extern “C” __declspec(dllexport) bool enuRemoveTask(wchar_t* pStrTaskID)

Parameters

  • wchar_t* pStrTaskID

제거하고자하는 TASK의 ID값을 입력합니다. (ex : “mytask”)

Return Value

Type : bool

Task 제거 여부를 반환합니다.

Remarks

Task를 제거하고자 하는 경우 본 함수를 활용합니다.

Examples

if (enuRemoveTask(L"mytask")
{
    // task 제거 완료.
}