Commit 5f4f2c0b authored by Alexandre Julliard's avatar Alexandre Julliard

makedep: Don't try to open .tlb files.

parent 59ef3c92
......@@ -727,6 +727,13 @@ static void parse_file( INCL_FILE *pFile, int src )
return;
}
/* don't try to open .tlb files */
if (strendswith( pFile->name, ".tlb" ))
{
pFile->filename = xstrdup( pFile->name );
return;
}
file = src ? open_src_file( pFile ) : open_include_file( pFile );
if (!file) return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment