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
23 #define WIN32_NO_STATUS
27 #include "wine/debug.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
);
49 *handle
= (HSLC
)0xdeadbeef;
54 HRESULT WINAPI
SLClose(HSLC handle
)
56 FIXME("(%p) stub\n", handle
);
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
);