diff options
| author | Dave Clark <[email protected]> | 2018-01-16 17:45:06 -0500 |
|---|---|---|
| committer | Dave Clark <[email protected]> | 2018-01-16 17:45:06 -0500 |
| commit | f37d08c2dde47b5d55a257cde7dc7d450d2e8194 (patch) | |
| tree | c30704a59a06040dff585e4a3cb6b70a0af74e13 /include/gfesdk/bindings/cpp/isdk_cpp_impl.h | |
| parent | Push of missing .libs from SDK #147 (diff) | |
| download | archived-gfesdk-f37d08c2dde47b5d55a257cde7dc7d450d2e8194.tar.xz archived-gfesdk-f37d08c2dde47b5d55a257cde7dc7d450d2e8194.zip | |
Push Gfe SDK #1681.0.168
Diffstat (limited to 'include/gfesdk/bindings/cpp/isdk_cpp_impl.h')
| -rw-r--r-- | include/gfesdk/bindings/cpp/isdk_cpp_impl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/gfesdk/bindings/cpp/isdk_cpp_impl.h b/include/gfesdk/bindings/cpp/isdk_cpp_impl.h index 2cbfd7e..f5eb3a9 100644 --- a/include/gfesdk/bindings/cpp/isdk_cpp_impl.h +++ b/include/gfesdk/bindings/cpp/isdk_cpp_impl.h @@ -79,7 +79,11 @@ inline Core* Core::Create(CreateInputParams const& inParams, CreateResponse& out cInputParams.notificationCallback = &CoreImpl::callbackNotificationWrapper; core->m_notificationCallbackContext.reset(new CoreImpl::CallbackNotificationContext({ inParams.notificationCallback, inParams.notificationCallbackContext })); cInputParams.notificationCallbackContext = core->m_notificationCallbackContext.get(); - + } + cInputParams.targetPid = inParams.targetPid; + if (!inParams.targetPath.empty()) + { + cInputParams.targetPath = inParams.targetPath.c_str(); } NVGSDK_CreateResponse cOutputParams = { 0 }; |