-
Notifications
You must be signed in to change notification settings - Fork 510
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #952 from meganz/develop
Update release branch with bindings for whyamiblocked (WP-UWP)
- Loading branch information
Showing
17 changed files
with
264 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/** | ||
* @file MError.cpp | ||
* @brief Provides information about an event. | ||
* | ||
* (c) 2013-2014 by Mega Limited, Auckland, New Zealand | ||
* | ||
* This file is part of the MEGA SDK - Client Access Engine. | ||
* | ||
* Applications using the MEGA API must present a valid application key | ||
* and comply with the the rules set forth in the Terms of Service. | ||
* | ||
* The MEGA SDK is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* @copyright Simplified (2-clause) BSD License. | ||
* | ||
* You should have received a copy of the license along with this | ||
* program. | ||
*/ | ||
|
||
#include "MEvent.h" | ||
|
||
using namespace mega; | ||
using namespace Platform; | ||
|
||
MEvent::MEvent(MegaEvent *megaEvent, bool cMemoryOwn) | ||
{ | ||
this->megaEvent = megaEvent; | ||
this->cMemoryOwn = cMemoryOwn; | ||
} | ||
|
||
MEvent::~MEvent() | ||
{ | ||
if (cMemoryOwn) | ||
delete megaEvent; | ||
} | ||
|
||
MegaEvent* MEvent::getCPtr() | ||
{ | ||
return megaEvent; | ||
} | ||
|
||
MEvent^ MEvent::copy() | ||
{ | ||
return megaEvent ? ref new MEvent(megaEvent->copy(), true) : nullptr; | ||
} | ||
|
||
MEventType MEvent::getType() | ||
{ | ||
return (MEventType) (megaEvent ? megaEvent->getType() : -1); | ||
} | ||
|
||
String^ MEvent::getText() | ||
{ | ||
std::string utf16text; | ||
const char *utf8text = megaEvent->getText(); | ||
|
||
MegaApi::utf8ToUtf16(utf8text, &utf16text); | ||
|
||
return ref new String((wchar_t *)utf16text.data()); | ||
} | ||
|
||
int MEvent::getNumber() | ||
{ | ||
return megaEvent ? megaEvent->getNumber() : 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** | ||
* @file MError.h | ||
* @brief Provides information about an event. | ||
* | ||
* (c) 2013-2014 by Mega Limited, Auckland, New Zealand | ||
* | ||
* This file is part of the MEGA SDK - Client Access Engine. | ||
* | ||
* Applications using the MEGA API must present a valid application key | ||
* and comply with the the rules set forth in the Terms of Service. | ||
* | ||
* The MEGA SDK is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* @copyright Simplified (2-clause) BSD License. | ||
* | ||
* You should have received a copy of the license along with this | ||
* program. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "megaapi.h" | ||
|
||
namespace mega | ||
{ | ||
using namespace Windows::Foundation; | ||
using Platform::String; | ||
|
||
public enum class MEventType | ||
{ | ||
EVENT_COMMIT_DB = 0, | ||
EVENT_ACCOUNT_CONFIRMATION = 1, | ||
EVENT_CHANGE_TO_HTTPS = 2, | ||
EVENT_DISCONNECT = 3, | ||
EVENT_ACCOUNT_BLOCKED = 4 | ||
}; | ||
|
||
public ref class MEvent sealed | ||
{ | ||
friend ref class MegaSDK; | ||
friend class DelegateMListener; | ||
friend class DelegateMGlobalListener; | ||
|
||
public: | ||
virtual ~MEvent(); | ||
MEvent^ copy(); | ||
MEventType getType(); | ||
String^ getText(); | ||
int getNumber(); | ||
|
||
private: | ||
MEvent(MegaEvent *megaEvent, bool cMemoryOwn); | ||
MegaEvent *megaEvent; | ||
MegaEvent *getCPtr(); | ||
bool cMemoryOwn; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.