Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
en:bs2_removeauthoperatorlevelex [2019/06/03 11:39] yjjung |
en:bs2_removeauthoperatorlevelex [2023/08/17 13:36] (current) |
||
---|---|---|---|
Line 9: | Line 9: | ||
The new API below accommodates setting operators up to 1,000. \\ | The new API below accommodates setting operators up to 1,000. \\ | ||
<callout type="warning" icon="true"> | <callout type="warning" icon="true"> | ||
- | <wrap em>Caution</wrap> \\ | + | **CAUTION** \\ |
The exsiting [[configuration api#BS2AuthConfig]] and operators are valid until you call the new API. | The exsiting [[configuration api#BS2AuthConfig]] and operators are valid until you call the new API. | ||
However, if at any one time you call the newly added API below, the existing [[configuration api#BS2AuthConfig]]setting will be ignored so you need to use only the new API and structure. \\ | However, if at any one time you call the newly added API below, the existing [[configuration api#BS2AuthConfig]]setting will be ignored so you need to use only the new API and structure. \\ | ||
If you want to use the new API with the new structure, please move the operator list managed by existing BS2AuthConfig securely to the new structure [[device_api#BS2AuthOperatorLevel]] where can manage 1000 operators. \\ | If you want to use the new API with the new structure, please move the operator list managed by existing BS2AuthConfig securely to the new structure [[device_api#BS2AuthOperatorLevel]] where can manage 1000 operators. \\ | ||
</callout> | </callout> | ||
- | ==== 함수 ==== | + | ==== Declaration ==== |
<code cpp> | <code cpp> | ||
#include "BS_API.h" | #include "BS_API.h" | ||
Line 20: | Line 20: | ||
int BS2_RemoveAuthOperatorLevelEx(void* context, BS2_DEVICE_ID deviceId, BS2_USER_ID* userIDs, uint32_t userIDCount); | int BS2_RemoveAuthOperatorLevelEx(void* context, BS2_DEVICE_ID deviceId, BS2_USER_ID* userIDs, uint32_t userIDCount); | ||
</code> | </code> | ||
- | ==== Declaration ==== | + | ==== Parameter ==== |
* [In] ''//context//'' : Context | * [In] ''//context//'' : Context | ||
* [In] ''//deviceId//'' : Device ID | * [In] ''//deviceId//'' : Device ID | ||
Line 26: | Line 26: | ||
* [In] ''//userIDCount//'' : Number of user trying to remove | * [In] ''//userIDCount//'' : Number of user trying to remove | ||
==== Return Value==== | ==== Return Value==== | ||
- | If successfully done, ''BS_SDK_SUCCESS' will be returned. If there is an error, the corresponding error code will be returned. | + | If successfully done, ''BS_SDK_SUCCESS'' will be returned. If there is an error, the corresponding error code will be returned. |
==== See Also ==== | ==== See Also ==== | ||
[[BS2_GetAuthOperatorLevelEx]]\\ [[BS2_GetAllAuthOperatorLevelEx]]\\ [[BS2_SetAuthOperatorLevelEx]]\\ [[BS2_RemoveAuthOperatorLevelEx]]\\ [[BS2_RemoveAllAuthOperatorLevelEx]] | [[BS2_GetAuthOperatorLevelEx]]\\ [[BS2_GetAllAuthOperatorLevelEx]]\\ [[BS2_SetAuthOperatorLevelEx]]\\ [[BS2_RemoveAuthOperatorLevelEx]]\\ [[BS2_RemoveAllAuthOperatorLevelEx]] | ||