Commit e59b5569 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

browseui: Enable compilation with long types.

parent 241c5fe8
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = browseui.dll
IMPORTS = uuid ole32 comctl32 user32 advapi32
......
......@@ -140,7 +140,7 @@ static HRESULT WINAPI ACLMulti_Next(IEnumString *iface, ULONG celt, LPOLESTR *rg
{
ACLMulti *This = impl_from_IEnumString(iface);
TRACE("(%p, %d, %p, %p)\n", iface, celt, rgelt, pceltFetched);
TRACE("(%p, %ld, %p, %p)\n", iface, celt, rgelt, pceltFetched);
while (This->currObj < This->nObjs)
{
if (This->objs[This->currObj].pEnum)
......
......@@ -94,7 +94,7 @@ static ULONG WINAPI ACLShellSource_AddRef(IEnumString *iface)
{
ACLShellSource *This = impl_from_IEnumString(iface);
ULONG ref = InterlockedIncrement(&This->refCount);
TRACE("(%p)->(%u)\n", This, ref);
TRACE("(%p)->(%lu)\n", This, ref);
return ref;
}
......@@ -103,7 +103,7 @@ static ULONG WINAPI ACLShellSource_Release(IEnumString *iface)
ACLShellSource *This = impl_from_IEnumString(iface);
ULONG ref = InterlockedDecrement(&This->refCount);
TRACE("(%p)->(%u)\n", This, ref);
TRACE("(%p)->(%lu)\n", This, ref);
if (ref == 0)
ACLShellSource_Destructor(This);
......@@ -114,14 +114,14 @@ static HRESULT WINAPI ACLShellSource_Next(IEnumString *iface, ULONG celt, LPOLES
ULONG *fetched)
{
ACLShellSource *This = impl_from_IEnumString(iface);
FIXME("(%p)->(%u %p %p): stub\n", This, celt, rgelt, fetched);
FIXME("(%p)->(%lu %p %p): stub\n", This, celt, rgelt, fetched);
return E_NOTIMPL;
}
static HRESULT WINAPI ACLShellSource_Skip(IEnumString *iface, ULONG celt)
{
ACLShellSource *This = impl_from_IEnumString(iface);
FIXME("(%p)->(%u): stub\n", This, celt);
FIXME("(%p)->(%lu): stub\n", This, celt);
return E_NOTIMPL;
}
......
......@@ -162,7 +162,7 @@ static HRESULT ClassFactory_Constructor(LPFNCONSTRUCTOR ctor, LPVOID *ppvOut)
*/
BOOL WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID fImpLoad)
{
TRACE("%p 0x%x %p\n", hinst, fdwReason, fImpLoad);
TRACE("%p 0x%lx %p\n", hinst, fdwReason, fImpLoad);
switch (fdwReason)
{
case DLL_PROCESS_ATTACH:
......
......@@ -343,7 +343,7 @@ static HRESULT WINAPI ProgressDialog_StartProgressDialog(IProgressDialog *iface,
struct create_params params;
HANDLE hThread;
TRACE("(%p, %p, %x, %p)\n", iface, punkEnableModeless, dwFlags, reserved);
TRACE("(%p, %p, %lx, %p)\n", iface, punkEnableModeless, dwFlags, reserved);
if (punkEnableModeless || reserved)
FIXME("Reserved parameters not null (%p, %p)\n", punkEnableModeless, reserved);
if (dwFlags & PROGDLG_NOTIME)
......@@ -509,7 +509,7 @@ static HRESULT WINAPI ProgressDialog_SetLine(IProgressDialog *iface, DWORD dwLin
ProgressDialog *This = impl_from_IProgressDialog(iface);
HWND hwnd;
TRACE("(%p, %d, %s, %d)\n", This, dwLineNum, wine_dbgstr_w(pwzLine), bPath);
TRACE("(%p, %ld, %s, %d)\n", This, dwLineNum, wine_dbgstr_w(pwzLine), bPath);
if (reserved)
FIXME("reserved pointer not null (%p)\n", reserved);
......@@ -556,7 +556,7 @@ static HRESULT WINAPI ProgressDialog_Timer(IProgressDialog *iface, DWORD dwTimer
{
ProgressDialog *This = impl_from_IProgressDialog(iface);
FIXME("(%p, %d, %p) - stub\n", This, dwTimerAction, reserved);
FIXME("(%p, %ld, %p) - stub\n", This, dwTimerAction, reserved);
if (reserved)
FIXME("Reserved field not NULL but %p\n", reserved);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment