Home | History | Annotate | Download | only in nine
      1 /*
      2  * Copyright 2011 Joakim Sindholt <opensource (at) zhasha.com>
      3  *
      4  * Permission is hereby granted, free of charge, to any person obtaining a
      5  * copy of this software and associated documentation files (the "Software"),
      6  * to deal in the Software without restriction, including without limitation
      7  * on the rights to use, copy, modify, merge, publish, distribute, sub
      8  * license, and/or sell copies of the Software, and to permit persons to whom
      9  * the Software is furnished to do so, subject to the following conditions:
     10  *
     11  * The above copyright notice and this permission notice (including the next
     12  * paragraph) shall be included in all copies or substantial portions of the
     13  * Software.
     14  *
     15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     17  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
     18  * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
     19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
     20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
     21  * USE OR OTHER DEALINGS IN THE SOFTWARE. */
     22 
     23 #include "authenticatedchannel9.h"
     24 
     25 #define DBG_CHANNEL DBG_AUTHENTICATEDCHANNEL
     26 
     27 HRESULT NINE_WINAPI
     28 NineAuthenticatedChannel9_GetCertificateSize( struct NineAuthenticatedChannel9 *This,
     29                                               UINT *pCertificateSize )
     30 {
     31     STUB(D3DERR_INVALIDCALL);
     32 }
     33 
     34 HRESULT NINE_WINAPI
     35 NineAuthenticatedChannel9_GetCertificate( struct NineAuthenticatedChannel9 *This,
     36                                           UINT CertifacteSize,
     37                                           BYTE *ppCertificate )
     38 {
     39     STUB(D3DERR_INVALIDCALL);
     40 }
     41 
     42 HRESULT NINE_WINAPI
     43 NineAuthenticatedChannel9_NegotiateKeyExchange( struct NineAuthenticatedChannel9 *This,
     44                                                 UINT DataSize,
     45                                                 void *pData )
     46 {
     47     STUB(D3DERR_INVALIDCALL);
     48 }
     49 
     50 HRESULT NINE_WINAPI
     51 NineAuthenticatedChannel9_Query( struct NineAuthenticatedChannel9 *This,
     52                                  UINT InputSize,
     53                                  const void *pInput,
     54                                  UINT OutputSize,
     55                                  void *pOutput )
     56 {
     57     STUB(D3DERR_INVALIDCALL);
     58 }
     59 
     60 HRESULT NINE_WINAPI
     61 NineAuthenticatedChannel9_Configure( struct NineAuthenticatedChannel9 *This,
     62                                      UINT InputSize,
     63                                      const void *pInput,
     64                                      D3DAUTHENTICATEDCHANNEL_CONFIGURE_OUTPUT *pOutput )
     65 {
     66     STUB(D3DERR_INVALIDCALL);
     67 }
     68 
     69 IDirect3DAuthenticatedChannel9Vtbl NineAuthenticatedChannel9_vtable = {
     70     (void *)NineUnknown_QueryInterface,
     71     (void *)NineUnknown_AddRef,
     72     (void *)NineUnknown_Release,
     73     (void *)NineAuthenticatedChannel9_GetCertificateSize,
     74     (void *)NineAuthenticatedChannel9_GetCertificate,
     75     (void *)NineAuthenticatedChannel9_NegotiateKeyExchange,
     76     (void *)NineAuthenticatedChannel9_Query,
     77     (void *)NineAuthenticatedChannel9_Configure
     78 };
     79