Commit b1d4807f authored by Alexandre Julliard's avatar Alexandre Julliard

makedep: Remove support for no longer used .mc.rc files.

parent 953359c7
......@@ -468,28 +468,6 @@ static FILE *open_include_file( struct incl_file *pFile )
free( filename );
}
/* check for generated message resource */
if (strendswith( pFile->name, ".mc.rc" ))
{
if (src_dir)
filename = strmake( "%s/%s", src_dir, pFile->name );
else
filename = xstrdup( pFile->name );
filename[strlen(filename) - 3] = 0;
if ((file = fopen( filename, "r" )))
{
pFile->sourcename = filename;
pFile->filename = xstrdup( pFile->name );
/* don't bother to parse it */
fclose( file );
return NULL;
}
free( filename );
}
/* check for corresponding idl file in source dir */
if (strendswith( pFile->name, ".h" ))
......
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