cmd: DIR command outputs free space for the path.
[wine.git] / dlls / sppc / sppc.c
blob8819961d7c64a27c70502e7878b530e9508f0a35
1 /*
3 * Copyright 2008 Alistair Leslie-Hughes
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include <stdarg.h>
22 #include "ntstatus.h"
23 #define WIN32_NO_STATUS
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winternl.h"
27 #include "wine/debug.h"
29 #include "slpublic.h"
30 #include "slerror.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(slc);
34 HRESULT WINAPI SLGetLicensingStatusInformation(HSLC handle, const SLID *app, const SLID *product,
35 LPCWSTR name, UINT *count, SL_LICENSING_STATUS **status)
37 FIXME("(%p %p %p %s %p %p) stub\n", handle, app, product, debugstr_w(name), count, status );
39 return SL_E_RIGHT_NOT_CONSUMED;
42 HRESULT WINAPI SLOpen(HSLC *handle)
44 FIXME("(%p) stub\n", handle );
46 if (!handle)
47 return E_INVALIDARG;
49 *handle = (HSLC)0xdeadbeef;
51 return S_OK;
54 HRESULT WINAPI SLClose(HSLC handle)
56 FIXME("(%p) stub\n", handle );
58 return S_OK;
61 HRESULT WINAPI SLPersistApplicationPolicies(const SLID *app, const SLID *product, DWORD flags)
63 FIXME("(%s,%s,%lx) stub\n", wine_dbgstr_guid(app), wine_dbgstr_guid(product), flags);
65 if (!app)
66 return E_INVALIDARG;
68 return S_OK;