[][src]Function slang_sys::spGetEntryPointCodeBlob

pub unsafe extern "C" fn spGetEntryPointCodeBlob(
    request: *mut SlangCompileRequest,
    entryPointIndex: c_int,
    targetIndex: c_int,
    outBlob: *mut *mut ISlangBlob
) -> SlangResult

Get the output code associated with a specific entry point.

@param entryPointIndex The index of the entry point to get code for. @param targetIndex The index of the target to get code for (default: zero). @param outBlob A pointer that will receive the blob of code @returns A SlangResult to indicate success or failure.

The lifetime of the output pointer is the same as request.