DxilDiaTableFrameData.cpp 1.1 KB

1234567891011121314151617181920212223
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // //
  3. // DxilDiaTableFrameData.cpp //
  4. // Copyright (C) Microsoft Corporation. All rights reserved. //
  5. // This file is distributed under the University of Illinois Open Source //
  6. // License. See LICENSE.TXT for details. //
  7. // //
  8. // DIA API implementation for DXIL modules. //
  9. // //
  10. ///////////////////////////////////////////////////////////////////////////////
  11. #include "DxilDiaTableFrameData.h"
  12. #include "DxilDiaSession.h"
  13. dxil_dia::FrameDataTable::FrameDataTable(IMalloc *pMalloc, Session *pSession)
  14. : impl::TableBase<IDiaEnumFrameData, IDiaFrameData>(pMalloc, pSession, Table::Kind::FrameData) {
  15. }
  16. HRESULT dxil_dia::FrameDataTable::GetItem(DWORD index, IDiaFrameData **ppItem) {
  17. *ppItem = nullptr;
  18. return E_FAIL;
  19. }