browseui: Build with msvcrt.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Alexandre Julliard 2019-05-28 07:37:36 +02:00
parent 113983d23d
commit 7c7a259e7c
6 changed files with 5 additions and 17 deletions

View File

@ -1,6 +1,8 @@
MODULE = browseui.dll
IMPORTS = uuid ole32 comctl32 user32 advapi32
EXTRADLLFLAGS = -mno-cygwin
C_SRCS = \
aclmulti.c \
aclsource.c \

View File

@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#define COBJMACROS
@ -37,7 +35,6 @@
#include "shlobj.h"
#include "wine/heap.h"
#include "wine/unicode.h"
#include "browseui.h"

View File

@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#define COBJMACROS
@ -37,7 +35,6 @@
#include "shlobj.h"
#include "wine/heap.h"
#include "wine/unicode.h"
#include "browseui.h"

View File

@ -19,8 +19,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include <stdio.h>

View File

@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#define COBJMACROS
@ -37,7 +35,6 @@
#include "shlobj.h"
#include "wine/heap.h"
#include "wine/unicode.h"
#include "browseui.h"
#include "resids.h"

View File

@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#define COBJMACROS
@ -37,7 +35,6 @@
#include "shlobj.h"
#include "wine/heap.h"
#include "wine/unicode.h"
#include "browseui.h"
#include "resids.h"
@ -100,7 +97,7 @@ static void set_buffer(LPWSTR *buffer, LPCWSTR string)
string = empty_string;
CoGetMalloc(MEMCTX_TASK, &malloc);
cb = (strlenW(string) + 1)*sizeof(WCHAR);
cb = (lstrlenW(string) + 1)*sizeof(WCHAR);
if (*buffer == NULL || cb > IMalloc_GetSize(malloc, *buffer))
*buffer = IMalloc_Realloc(malloc, *buffer, cb);
memcpy(*buffer, string, cb);
@ -119,8 +116,8 @@ static LPWSTR load_string(HINSTANCE hInstance, UINT uiResourceId)
LPWSTR ret;
LoadStringW(hInstance, uiResourceId, string, ARRAY_SIZE(string));
ret = HeapAlloc(GetProcessHeap(), 0, (strlenW(string) + 1) * sizeof(WCHAR));
strcpyW(ret, string);
ret = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(string) + 1) * sizeof(WCHAR));
lstrcpyW(ret, string);
return ret;
}