summaryrefslogtreecommitdiff
path: root/protocols/CloudFile
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2021-12-26 16:39:04 +0300
committerGeorge Hazan <ghazan@miranda.im>2021-12-26 16:39:04 +0300
commit62a186697df33c96dc1a6dac0f4dfc38652fb96f (patch)
tree1437d0906218fae8827aed384026f2b7e656f4ac /protocols/CloudFile
parentfcbb395dc7ff3edab972b6d4b27dbbfb3305f5d7 (diff)
BYTE -> uint8_t
Diffstat (limited to 'protocols/CloudFile')
-rw-r--r--protocols/CloudFile/src/Services/dropbox_service.cpp4
-rw-r--r--protocols/CloudFile/src/Services/microsoft_service.cpp4
-rw-r--r--protocols/CloudFile/src/Services/yandex_service.cpp2
-rw-r--r--protocols/CloudFile/src/options.cpp2
4 files changed, 6 insertions, 6 deletions
diff --git a/protocols/CloudFile/src/Services/dropbox_service.cpp b/protocols/CloudFile/src/Services/dropbox_service.cpp
index f4b9a22b3d..46a096df0b 100644
--- a/protocols/CloudFile/src/Services/dropbox_service.cpp
+++ b/protocols/CloudFile/src/Services/dropbox_service.cpp
@@ -133,7 +133,7 @@ void CDropboxService::HandleJsonError(JSONNode &node)
auto CDropboxService::UploadFile(const char *data, size_t size, const std::string &path)
{
ptrA token(getStringA("TokenSecret"));
- BYTE strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
+ uint8_t strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
DropboxAPI::UploadFileRequest request(token, path.c_str(), data, size, (OnConflict)strategy);
NLHR_PTR response(request.Send(m_hConnection));
@@ -162,7 +162,7 @@ void CDropboxService::UploadFileChunk(const std::string &sessionId, const char *
auto CDropboxService::CommitUploadSession(const std::string &sessionId, const char *data, size_t size, size_t offset, const std::string &path)
{
ptrA token(getStringA("TokenSecret"));
- BYTE strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
+ uint8_t strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
DropboxAPI::CommitUploadSessionRequest request(token, sessionId.c_str(), offset, path.c_str(), data, size, (OnConflict)strategy);
NLHR_PTR response(request.Send(m_hConnection));
diff --git a/protocols/CloudFile/src/Services/microsoft_service.cpp b/protocols/CloudFile/src/Services/microsoft_service.cpp
index 27ec0df7fb..1c74d469e8 100644
--- a/protocols/CloudFile/src/Services/microsoft_service.cpp
+++ b/protocols/CloudFile/src/Services/microsoft_service.cpp
@@ -154,7 +154,7 @@ void COneDriveService::HandleJsonError(JSONNode &node)
auto COneDriveService::UploadFile(const std::string &parentId, const std::string &fileName, const char *data, size_t size)
{
ptrA token(getStringA("TokenSecret"));
- BYTE strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
+ uint8_t strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
OneDriveAPI::UploadFileRequest *request = !parentId.empty()
? new OneDriveAPI::UploadFileRequest(token, parentId.c_str(), fileName.c_str(), data, size, (OnConflict)strategy)
: new OneDriveAPI::UploadFileRequest(token, fileName.c_str(), data, size, (OnConflict)strategy);
@@ -168,7 +168,7 @@ auto COneDriveService::UploadFile(const std::string &parentId, const std::string
auto COneDriveService::CreateUploadSession(const std::string &parentId, const std::string &fileName)
{
ptrA token(getStringA("TokenSecret"));
- BYTE strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
+ uint8_t strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
OneDriveAPI::CreateUploadSessionRequest *request = !parentId.empty()
? new OneDriveAPI::CreateUploadSessionRequest(token, parentId.c_str(), fileName.c_str(), (OnConflict)strategy)
: new OneDriveAPI::CreateUploadSessionRequest(token, fileName.c_str(), (OnConflict)strategy);
diff --git a/protocols/CloudFile/src/Services/yandex_service.cpp b/protocols/CloudFile/src/Services/yandex_service.cpp
index 816e6ea5e4..739d8a2722 100644
--- a/protocols/CloudFile/src/Services/yandex_service.cpp
+++ b/protocols/CloudFile/src/Services/yandex_service.cpp
@@ -167,7 +167,7 @@ void CYandexService::HandleJsonError(JSONNode &node)
auto CYandexService::CreateUploadSession(const std::string &path)
{
ptrA token(getStringA("TokenSecret"));
- BYTE strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
+ uint8_t strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
YandexAPI::GetUploadUrlRequest request(token, path.c_str(), (OnConflict)strategy);
NLHR_PTR response(request.Send(m_hConnection));
diff --git a/protocols/CloudFile/src/options.cpp b/protocols/CloudFile/src/options.cpp
index de961a314a..f50168005e 100644
--- a/protocols/CloudFile/src/options.cpp
+++ b/protocols/CloudFile/src/options.cpp
@@ -31,7 +31,7 @@ bool COptionsMainDlg::OnInitDialog()
m_defaultService.SetCurSel(iItem);
}
- BYTE strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
+ uint8_t strategy = g_plugin.getByte("ConflictStrategy", OnConflict::REPLACE);
switch (strategy)
{
case OnConflict::RENAME: