Hans Leidekker (@hans) commented about dlls/rometadata/assembly.c:
- ULONG i;
- for (i = 0; i < TABLE_MAX; i++)
- {
struct table_schema *schema = table_schemas[i];
ULONG j;
for (j = 0; j < schema->columns_len; j++)
{
if (schema->columns[j].primary_key)
{
schema->key_idx = j;
break;
}
}
- }
This is static data, it should be possible to encode this without an init function.