From: Louis Lenders xerox.xerox2000x@gmail.com
--- dlls/magnification/Makefile.in | 3 +++ dlls/magnification/magnification.spec | 2 +- dlls/magnification/main.c | 27 +++++++++++++++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 dlls/magnification/main.c
diff --git a/dlls/magnification/Makefile.in b/dlls/magnification/Makefile.in index d880ca49369..c557e688b4b 100644 --- a/dlls/magnification/Makefile.in +++ b/dlls/magnification/Makefile.in @@ -1,3 +1,6 @@ MODULE = magnification.dll
EXTRADLLFLAGS = -Wb,--prefer-native + +SOURCES = \ + main.c diff --git a/dlls/magnification/magnification.spec b/dlls/magnification/magnification.spec index ddbb171b605..79fcc76add2 100644 --- a/dlls/magnification/magnification.spec +++ b/dlls/magnification/magnification.spec @@ -18,4 +18,4 @@ @ stub MagSetWindowSource @ stub MagSetWindowTransform @ stub MagShowSystemCursor -@ stub MagUninitialize +@ stdcall MagUninitialize() diff --git a/dlls/magnification/main.c b/dlls/magnification/main.c new file mode 100644 index 00000000000..2bd7c8ebc4c --- /dev/null +++ b/dlls/magnification/main.c @@ -0,0 +1,27 @@ +/* + * Copyright 2025 Louis Lenders + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(magnification); + +BOOL WINAPI MagUninitialize(void) +{ + FIXME("stub!\n"); + return TRUE; +}