Skip to content

Commit

Permalink
Correct indent
Browse files Browse the repository at this point in the history
  • Loading branch information
sebaszm committed Mar 29, 2024
1 parent 98dc66b commit c6d896c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions interfaces/IMessenger.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ namespace Exchange {
enum { ID = ID_ROOMADMINISTRATOR_ROOM };

struct EXTERNAL ICallback : virtual public Core::IUnknown {
enum { ID = ID_ROOMADMINISTRATOR_ROOM_CALLBACK };
enum { ID = ID_ROOMADMINISTRATOR_ROOM_CALLBACK };

virtual void Joined(const string& userId) = 0;
virtual void Left(const string& userId) = 0;
virtual void Joined(const string& userId) = 0;
virtual void Left(const string& userId) = 0;
};

struct EXTERNAL IMsgNotification : virtual public Core::IUnknown {
enum { ID = ID_ROOMADMINISTRATOR_ROOM_MSGNOTIFICATION };
enum { ID = ID_ROOMADMINISTRATOR_ROOM_MSGNOTIFICATION };

virtual void Message(const string& message, const string& userId) = 0;
virtual void Message(const string& message, const string& userId) = 0;
};

virtual void SendMessage(const string& message) = 0;
Expand Down Expand Up @@ -128,7 +128,7 @@ namespace Exchange {
// @retval ERROR_BAD_REQUEST: User name or room name is invalid
// @retval ERROR_PRIVILEGED_REQUEST Room security errors
virtual Core::hresult Join(const string& room, const string& user, const security secure /* @optional */,
IStringIterator* const acl /* @optional */, string& roomId /* @out */) = 0;
IStringIterator* const acl /* @optional */, string& roomId /* @out */) = 0;

// @brief Leaves a messaging room
// @details The room ID becomes invalid after this call.
Expand Down

0 comments on commit c6d896c

Please sign in to comment.