Skip to content

Commit

Permalink
feat: support 3.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 committed Jul 5, 2021
1 parent 66a3c59 commit 5f418a9
Show file tree
Hide file tree
Showing 8 changed files with 10,871 additions and 9,805 deletions.
1,413 changes: 724 additions & 689 deletions cpp/android/include/AgoraBase.h

Large diffs are not rendered by default.

18 changes: 0 additions & 18 deletions cpp/android/include/AgoraRtcCryptoCppLoader.h

This file was deleted.

34 changes: 34 additions & 0 deletions cpp/android/include/IAgoraLog.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
//
// Agora Media SDK
//
// Copyright (c) 2015 Agora IO. All rights reserved.
//

#pragma once

#include <stdint.h>

namespace agora {
namespace commons {
/*
The SDK uses ILogWriter class Write interface to write logs as application
The application inherits the methods Write() to implentation their own log writ
Write has default implementation, it writes logs to files.
Application can use setLogFile() to change file location, see description of set
*/
class ILogWriter {
public:
/** user defined log Write function
@param message message content
@param length message length
@return
- 0: success
- <0: failure
*/
virtual int32_t writeLog(const char* message, uint16_t length) = 0;
virtual ~ILogWriter() {}
};

} // namespace commons
} // namespace agora
536 changes: 300 additions & 236 deletions cpp/android/include/IAgoraMediaEngine.h

Large diffs are not rendered by default.

3,024 changes: 1,531 additions & 1,493 deletions cpp/android/include/IAgoraRtcChannel.h

Large diffs are not rendered by default.

Loading

0 comments on commit 5f418a9

Please sign in to comment.