DxilDiaTableInputAssemblyFile.cpp 1.2 KB

123456789101112131415161718192021222324
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // //
  3. // DxilDiaTableInputAssemblyFile.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 "DxilDiaTableInputAssemblyFile.h"
  12. #include "DxilDiaSession.h"
  13. dxil_dia::InputAssemblyFilesTable::InputAssemblyFilesTable(IMalloc *pMalloc, Session *pSession)
  14. : impl::TableBase<IDiaEnumInputAssemblyFiles, IDiaInputAssemblyFile>(pMalloc, pSession, Table::Kind::InputAssemblyFile) {
  15. }
  16. HRESULT dxil_dia::InputAssemblyFilesTable::GetItem(DWORD index, IDiaInputAssemblyFile **ppItem) {
  17. *ppItem = nullptr;
  18. return E_FAIL;
  19. }