Wed, 01 Jan 2025 15:37:20 -0600
Added tag v2.90.1 for changeset a7fd7e06c486
/* * Pidgin is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA * */ #include <io.h> #include <stdlib.h> #include <stdio.h> /* winsock2.h needs to be include before windows.h or else it throws a warning * saying it needs to be included first. We don't use it directly but it's * included indirectly. */ #include <winsock2.h> #include <windows.h> #include <winuser.h> #include <shellapi.h> #include <glib.h> #include <glib/gstdio.h> #include <gtk/gtk.h> #include <purple.h> #include "resource.h" #include "gtkwin32dep.h" /* * PUBLIC CODE */ /* DLL initializer */ /* suppress gcc "no previous prototype" warning */ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved); BOOL WINAPI DllMain(G_GNUC_UNUSED HINSTANCE hinstDLL, G_GNUC_UNUSED DWORD fdwReason, G_GNUC_UNUSED LPVOID lpvReserved) { return TRUE; }