Skip to content

Commit

Permalink
fix 4.3.1.136 custom header
Browse files Browse the repository at this point in the history
  • Loading branch information
guoxianzhe committed Jul 23, 2024
1 parent 1550277 commit 2a60c30
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions headers/rtc_4.3.1.136/custom_headers/CustomIAgoraRtcEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,10 @@ class IRtcEngine {
virtual void release(bool sync = false) = 0;

/**
* @iris_api_id: RtcEngine_getUserInfoByUid_0a0b913
* @source: virtual int stopScreenCapture() = 0;
* @iris_api_id: RtcEngine_getUserInfoByUid_6b7aee8
* @source: virtual int getUserInfoByUid(uid_t uid, rtc::UserInfo* userInfo) = 0;
*/
virtual int getUserInfoByUid(const char* channelId, uid_t uid, rtc::UserInfo* userInfo) = 0;
virtual int getUserInfoByUid(uid_t uid, rtc::UserInfo* userInfo) = 0;

/**
* @iris_api_id: RtcEngine_getUserInfoByUid_0a0b913
Expand All @@ -225,10 +225,10 @@ class IRtcEngine {
virtual int getUserInfoByUidWithChannelId(const char *channelId, uid_t uid, rtc::UserInfo *userInfo) = 0;

/**
* @iris_api_id: RtcEngine_getUserInfoByUserAccount_86c855f
* @source: virtual int getUserInfoByUserAccount(const char* channelId, const char* userAccount, rtc::UserInfo* userInfo) = 0;
* @iris_api_id: RtcEngine_getUserInfoByUserAccount_c6a8f08
* @source: virtual int getUserInfoByUserAccount(const char* userAccount, rtc::UserInfo* userInfo) = 0;
*/
virtual int getUserInfoByUserAccount(const char* channelId, const char* userAccount, rtc::UserInfo* userInfo) = 0;
virtual int getUserInfoByUserAccount(const char* userAccount, rtc::UserInfo* userInfo) = 0;

/**
* @iris_api_id: RtcEngine_getUserInfoByUserAccount_86c855f
Expand Down

0 comments on commit 2a60c30

Please sign in to comment.