DxilDiaTableInputAssemblyFile.h 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // //
  3. // DxilDiaTableInputAssemblyFile.h //
  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. #pragma once
  12. #include "dxc/Support/WinIncludes.h"
  13. #include "dia2.h"
  14. #include "dxc/Support/Global.h"
  15. #include "dxc/Support/microcom.h"
  16. #include "DxilDiaTable.h"
  17. namespace dxil_dia {
  18. class Session;
  19. class InputAssemblyFilesTable
  20. : public impl::TableBase<IDiaEnumInputAssemblyFiles, IDiaInputAssemblyFile> {
  21. public:
  22. InputAssemblyFilesTable(IMalloc *pMalloc, Session *pSession);
  23. HRESULT GetItem(DWORD index, IDiaInputAssemblyFile **ppItem) override;
  24. };
  25. } // namespace dxil_dia