mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
appwiz.cpl: Remove an unused function.
This commit is contained in:
parent
8a1539ac98
commit
cedeac3191
1 changed files with 0 additions and 13 deletions
|
@ -74,19 +74,6 @@ static const WCHAR mshtml_keyW[] =
|
||||||
static HWND install_dialog = NULL;
|
static HWND install_dialog = NULL;
|
||||||
static LPWSTR url = NULL;
|
static LPWSTR url = NULL;
|
||||||
|
|
||||||
static inline char *heap_strdupWtoA(LPCWSTR str)
|
|
||||||
{
|
|
||||||
char *ret = NULL;
|
|
||||||
|
|
||||||
if(str) {
|
|
||||||
DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
|
|
||||||
ret = heap_alloc(size);
|
|
||||||
WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* SHA definitions are copied from advapi32. They aren't available in headers. */
|
/* SHA definitions are copied from advapi32. They aren't available in headers. */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Reference in a new issue