Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix 4.3.1.136 custom header #124

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions configs/rtc/remove_node_list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ module.exports = [
'agora::media::IVideoFrameObserver.getObservedFramePosition',
'agora::media::IVideoFrameObserver.isExternal',
'agora::rtc::IMediaPlayer.setPlayerOption',
'agora::rtc::IMediaPlayer.getPlayerOption',
'agora::rtc::IMusicPlayer.open',
'agora::rtc::RtcEngineContext.context',
'agora::rtc::RtcEngineContext.eventHandler',
Expand Down
18 changes: 15 additions & 3 deletions headers/rtc_4.3.1.136/custom_headers/CustomIAgoraRtcEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,22 +212,34 @@ class IRtcEngine {
*/
virtual void release(bool sync = false) = 0;

// ----------------------------- 👆🏻overload API👆🏻 -----------------------------

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

/**
* @iris_api_id: RtcEngine_getUserInfoByUid_0a0b913
* @source: virtual int getUserInfoByUid(const char* channelId, uid_t uid, rtc::UserInfo* userInfo) = 0;
*/
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;
*/
virtual int getUserInfoByUserAccount(const char* channelId, const char* userAccount, rtc::UserInfo* userInfo) = 0;

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

// ----------------------------- 👆🏻overload API👆🏻 -----------------------------

// ----------------------------- 👇🏻rename API👇🏻 -----------------------------

/**
* @iris_api_id: RtcEngine_startPreview
* @source: virtual int startPreview() = 0;
Expand Down
Loading