wer: Add a stub for WerRemoveExcludedApplication.
[wine/multimedia.git] / dlls / wer / main.c
bloba283baeb0281aafc16ee46db9827a3adabdb8f7a
1 /*
2 * Copyright 2010 Louis Lenders
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "config.h"
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(wer);
29 HRESULT WINAPI WerAddExcludedApplication(PCWSTR exeName, BOOL allUsers)
31 FIXME("(%s, %d) stub\n",debugstr_w(exeName), allUsers);
32 return E_NOTIMPL;
35 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
37 TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
39 switch (fdwReason)
41 case DLL_WINE_PREATTACH:
42 return FALSE; /* prefer native version */
43 case DLL_PROCESS_ATTACH:
44 DisableThreadLibraryCalls(hinstDLL);
45 break;
46 case DLL_PROCESS_DETACH:
47 break;
50 return TRUE;
53 /***********************************************************************
54 * WerRemoveExcludedApplication (wer.@)
56 * remove an application from the exclusion list
58 * PARAMS
59 * exeName [i] The application name
60 * allUsers [i] for all users (TRUE) or for the current user (FALSE)
62 * RESULTS
63 * SUCCESS S_OK
64 * FAILURE A HRESULT error code
67 HRESULT WINAPI WerRemoveExcludedApplication(PCWSTR exeName, BOOL allUsers)
69 FIXME("(%s, %d) :stub\n",debugstr_w(exeName), allUsers);
70 return E_NOTIMPL;