d3d10/effect: Add support for 'imul' instruction.
[wine.git] / dlls / tbs / tbs.c
blobcb18d01fa2ceca879a5054e391b8f17174eb5bbe
1 /*
2 * Trusted Platform Module Base Services
4 * Copyright 2021 Alex Henrie
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "windef.h"
22 #include "tbs.h"
23 #include "wine/debug.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(tbs);
27 TBS_RESULT WINAPI Tbsi_Context_Create(const TBS_CONTEXT_PARAMS *params, TBS_HCONTEXT *out)
29 FIXME("(%p, %p) stub\n", params, out);
30 return TBS_E_TPM_NOT_FOUND;
33 TBS_RESULT WINAPI Tbsi_GetDeviceInfo(UINT32 size, void *info)
35 FIXME("(%u, %p) stub\n", size, info);
36 return TBS_E_TPM_NOT_FOUND;