Customized resource helper interface.
More...
#include <customized_resource_helper_interface.h>
Customized resource helper interface.
Definition at line 52 of file customized_resource_helper_interface.h.
◆ AddCustomizedPictureResource()
| virtual SDKError ICustomizedResourceHelper::AddCustomizedPictureResource |
( |
const zchar_t * | key_, |
|
|
const zchar_t * | absolute_resource_path ) |
|
pure virtual |
Adds the custom photo files. Currently, supports PNG and SVG formats.
- Parameters
-
| key_ | Resource ID corresponding to the custom resource. |
| absolute_resource_path | The location of the customized resource file must be an absolute path and include the file name with suffix. |
- Returns
- If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error.
- Note
- You must call the function first before calling ZOOM_SDK_NAMESPACE::InitSDK(), or no, it won't work.
◆ AddCustomizedStringResource()
Uses the custom string to replace the specified string item.
- Parameters
-
| customizedType | Specifies the string item type. |
| customizedString | Specifies the custom string. |
- Returns
- If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error.
- Note
- If customizedString is nullptr or is not nullptr but with length zero(0), the return value is SDKERR_INVALID_PARAMETER.
-
You must call the function first before calling ZOOM_SDK_NAMESPACE::InitSDK(), or no, it won't work.
◆ AddCustomizedURLResource()
Uses the custom URL to replace the specified URL.
- Parameters
-
| customizedType | Specifies the URL type. |
| customizedUrl | Specifies the custom URL. |
- Returns
- If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error.
- Note
- If customizedUrl is nullptr or is not nullptr but with length zero(0), the return value is SDKERR_INVALID_PARAMETER.
-
You must call the function first before calling ZOOM_SDK_NAMESPACE::InitSDK(), or no, it won't work.