TB_SETBUTTONSIZE messages must be taken into account even after
[wine/dcerpc.git] / dlls / urlmon / umon.c
blob99a409685cbd8b155d96733fe8fd0c521ff9310c
1 /*
2 * UrlMon
4 * Copyright 1999 Corel Corporation
6 * Ulrich Czekalla
8 */
10 #include "windef.h"
11 #include "objbase.h"
12 #include "debugtools.h"
14 #include "urlmon.h"
16 DEFAULT_DEBUG_CHANNEL(win32);
18 /***********************************************************************
19 * CreateURLMoniker (URLMON.22)
21 * Create a url moniker
23 * RETURNS
24 * S_OK success
25 * E_OUTOFMEMORY out of memory
26 * MK_E_SYNTAX not a valid url
29 HRESULT WINAPI CreateURLMoniker(IMoniker *pmkContext, LPWSTR szURL, IMoniker **ppmk)
31 TRACE("\n");
33 if (NULL != pmkContext)
34 FIXME("Non-null pmkContext not implemented\n");
36 return CreateFileMoniker(szURL, ppmk);