reactos/modules/rostests/winetests/msi/selfreg.c
winesync 761e72c7d0
[WINESYNC] msi/tests: Test self-registration of a valid DLL.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id 8867712944d839385837ae4db8b50fff1380c507 by Zebediah Figura <z.figura12@gmail.com>
2022-03-20 19:27:51 +01:00

39 lines
1.1 KiB
C

/*
* DLL for testing self-registration
*
* Copyright 2018 Zebediah Figura
*
* 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 <winreg.h>
HRESULT WINAPI DllRegisterServer(void)
{
HKEY key;
RegCreateKeyA(HKEY_CLASSES_ROOT, "selfreg_test", &key);
RegCloseKey(key);
return S_OK;
}
HRESULT WINAPI DllUnregisterServer(void)
{
RegDeleteKeyA(HKEY_CLASSES_ROOT, "selfreg_test");
return S_OK;
}