[PATCH 0/1] MR10029: odbcad32: Add stub program.
From: Hans Leidekker <hans@codeweavers.com> --- configure.ac | 1 + programs/odbcad32/Makefile.in | 6 ++++++ programs/odbcad32/main.c | 30 ++++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 programs/odbcad32/Makefile.in create mode 100644 programs/odbcad32/main.c diff --git a/configure.ac b/configure.ac index 3b0520b5cb7..9b0c7b9b569 100644 --- a/configure.ac +++ b/configure.ac @@ -3582,6 +3582,7 @@ WINE_CONFIG_MAKEFILE(programs/netsh) WINE_CONFIG_MAKEFILE(programs/netstat) WINE_CONFIG_MAKEFILE(programs/ngen) WINE_CONFIG_MAKEFILE(programs/notepad) +WINE_CONFIG_MAKEFILE(programs/odbcad32) WINE_CONFIG_MAKEFILE(programs/oleview) WINE_CONFIG_MAKEFILE(programs/ping) WINE_CONFIG_MAKEFILE(programs/plugplay) diff --git a/programs/odbcad32/Makefile.in b/programs/odbcad32/Makefile.in new file mode 100644 index 00000000000..950f02b699f --- /dev/null +++ b/programs/odbcad32/Makefile.in @@ -0,0 +1,6 @@ +MODULE = odbcad32.exe + +EXTRADLLFLAGS = -mwindows -municode + +SOURCES = \ + main.c diff --git a/programs/odbcad32/main.c b/programs/odbcad32/main.c new file mode 100644 index 00000000000..9335ec2fef0 --- /dev/null +++ b/programs/odbcad32/main.c @@ -0,0 +1,30 @@ +/* + * Copyright 2026 Hans Leidekker for CodeWeavers + * + * 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 <stdarg.h> +#include "windef.h" +#include "winbase.h" +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(odbc); + +int WINAPI wWinMain(HINSTANCE hinst, HINSTANCE hprevinst, LPWSTR cmdline, int cmdshow) +{ + WINE_FIXME("stub\n"); + return 0; +} -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10029
participants (2)
-
Hans Leidekker -
Hans Leidekker (@hans)