From 0ea1ce46b586e93ecd78a57e8d30e492d67691f1 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 12 Nov 2023 19:03:36 +0300 Subject: fixes #3917 (Omegle is dead) --- protocols/Omegle/src/stdafx.h | 97 ------------------------------------------- 1 file changed, 97 deletions(-) delete mode 100644 protocols/Omegle/src/stdafx.h (limited to 'protocols/Omegle/src/stdafx.h') diff --git a/protocols/Omegle/src/stdafx.h b/protocols/Omegle/src/stdafx.h deleted file mode 100644 index 81425082c5..0000000000 --- a/protocols/Omegle/src/stdafx.h +++ /dev/null @@ -1,97 +0,0 @@ -/* - -Omegle plugin for Miranda Instant Messenger -_____________________________________________ - -Copyright © 2011-17 Robert Pösel, 2017-23 Miranda NG team - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. - -This program 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. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -*/ - -#pragma once - -#pragma warning(disable:4996) - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "version.h" - -class OmegleProto; - -#include "../../utils/std_string_utils.h" - -#include "http.h" -#include "client.h" -#include "proto.h" -#include "db.h" -#include "constants.h" -#include "dialogs.h" -#include "theme.h" -#include "resource.h" - -extern uint32_t g_mirandaVersion; - -class ScopedLock -{ -public: - ScopedLock(HANDLE h) : handle_(h) - { - WaitForSingleObject(handle_, INFINITE); - } - ~ScopedLock() - { - if (handle_) - ReleaseMutex(handle_); - } - void Unlock() - { - ReleaseMutex(handle_); - handle_ = nullptr; - } -private: - HANDLE handle_; -}; -- cgit v1.2.3