Lines Matching refs:table
46 // Finds the first table implementing the COM interface with ID |iid| in the
48 // table is found. On success the table will be returned via |table|.
49 bool FindTable(REFIID iid, IDiaSession* session, void** table);
51 // A templated version of FindTable. Finds the first table implementing type
53 // error or if no such table is found. On success the table will be returned via
54 // |table|.
56 bool FindTable(IDiaSession* session, InterfaceType** table) {
59 reinterpret_cast<void**>(table));