wined3d: Move swapchain buffer discarding to wined3d_cs_exec_present().
[wine.git] / dlls / appwiz.cpl / appwiz.h
blobac8b5427d988ed47be1077012fca0ed97c58e8c4
1 /*
2 * Copyright 2010 Jacek Caban for CodeWeavers
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 "wine/heap.h"
20 #include "winnls.h"
22 typedef enum {
23 ADDON_GECKO,
24 ADDON_MONO
25 } addon_t;
27 BOOL install_addon(addon_t) DECLSPEC_HIDDEN;
29 extern HINSTANCE hInst DECLSPEC_HIDDEN;
31 static inline WCHAR *heap_strdupW(const WCHAR *str)
33 WCHAR *ret;
35 if(str) {
36 size_t size = lstrlenW(str)+1;
37 ret = heap_alloc(size*sizeof(WCHAR));
38 if(ret)
39 memcpy(ret, str, size*sizeof(WCHAR));
40 }else {
41 ret = NULL;
44 return ret;
47 static inline WCHAR *heap_strdupAtoW(const char *str)
49 WCHAR *ret = NULL;
51 if(str) {
52 size_t len;
54 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
55 ret = heap_alloc(len*sizeof(WCHAR));
56 if(ret)
57 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
60 return ret;