Switch back to register component as all components have been adjusted

This commit is contained in:
momo5502 2023-03-05 10:47:12 +01:00
parent 2872dbf6a2
commit 7b65522186
34 changed files with 34 additions and 36 deletions

View File

@ -800,4 +800,4 @@ namespace arxan
};
}
REGISTER_COMPONENT_WORKING(arxan::component)
REGISTER_COMPONENT(arxan::component)

View File

@ -165,4 +165,4 @@ namespace auth
};
}
REGISTER_COMPONENT_WORKING(auth::component)
REGISTER_COMPONENT(auth::component)

View File

@ -157,4 +157,4 @@ namespace bots
};
}
REGISTER_COMPONENT_WORKING(bots::component)
REGISTER_COMPONENT(bots::component)

View File

@ -34,4 +34,4 @@ namespace branding
};
}
REGISTER_COMPONENT_WORKING(branding::component)
REGISTER_COMPONENT(branding::component)

View File

@ -56,4 +56,4 @@ namespace chat
};
}
REGISTER_COMPONENT_WORKING(chat::component)
REGISTER_COMPONENT(chat::component)

View File

@ -54,4 +54,4 @@ namespace client_command
};
}
REGISTER_COMPONENT_WORKING(client_command::component)
REGISTER_COMPONENT(client_command::component)

View File

@ -86,4 +86,4 @@ namespace client_patches
};
}
REGISTER_COMPONENT_WORKING(client_patches::component)
REGISTER_COMPONENT(client_patches::component)

View File

@ -74,4 +74,4 @@ namespace colors
};
}
REGISTER_COMPONENT_WORKING(colors::component)
REGISTER_COMPONENT(colors::component)

View File

@ -194,4 +194,4 @@ namespace command
}
}
REGISTER_COMPONENT_WORKING(command::component)
REGISTER_COMPONENT(command::component)

View File

@ -299,4 +299,4 @@ namespace console
};
}
REGISTER_COMPONENT_WORKING(console::component)
REGISTER_COMPONENT(console::component)

View File

@ -48,4 +48,4 @@ namespace console_command
};
}
REGISTER_COMPONENT_WORKING(console_command::component)
REGISTER_COMPONENT(console_command::component)

View File

@ -73,4 +73,4 @@ namespace dedicated
};
}
REGISTER_COMPONENT_WORKING(dedicated::component)
REGISTER_COMPONENT(dedicated::component)

View File

@ -51,4 +51,4 @@ namespace dedicated_info
};
}
REGISTER_COMPONENT_WORKING(dedicated_info::component)
REGISTER_COMPONENT(dedicated_info::component)

View File

@ -92,4 +92,4 @@ namespace dedicated_patches
};
}
REGISTER_COMPONENT_WORKING(dedicated_patches::component)
REGISTER_COMPONENT(dedicated_patches::component)

View File

@ -515,4 +515,4 @@ namespace demonware
};
}
REGISTER_COMPONENT_WORKING(demonware::component)
REGISTER_COMPONENT(demonware::component)

View File

@ -67,5 +67,5 @@ namespace discord
}
#ifndef DEV_BUILD
REGISTER_COMPONENT_WORKING(discord::component)
REGISTER_COMPONENT(discord::component)
#endif

View File

@ -221,4 +221,4 @@ namespace dvars
};
}
REGISTER_COMPONENT_WORKING(dvars::component)
REGISTER_COMPONENT(dvars::component)

View File

@ -212,4 +212,4 @@ namespace exception
};
}
REGISTER_COMPONENT_WORKING(exception::component)
REGISTER_COMPONENT(exception::component)

View File

@ -37,4 +37,4 @@ namespace extension
};
}
REGISTER_COMPONENT_WORKING(extension::component)
REGISTER_COMPONENT(extension::component)

View File

@ -68,4 +68,4 @@ namespace game_log
};
}
REGISTER_COMPONENT_WORKING(game_log::component)
REGISTER_COMPONENT(game_log::component)

View File

@ -119,4 +119,4 @@ namespace getinfo
};
}
REGISTER_COMPONENT_WORKING(getinfo::component)
REGISTER_COMPONENT(getinfo::component)

View File

@ -33,5 +33,5 @@ namespace intro
}
#ifdef DEV_BUILD
REGISTER_COMPONENT_WORKING(intro::component)
REGISTER_COMPONENT(intro::component)
#endif

View File

@ -76,4 +76,4 @@ namespace loot
};
};
REGISTER_COMPONENT_WORKING(loot::component)
REGISTER_COMPONENT(loot::component)

View File

@ -269,4 +269,4 @@ namespace network
};
}
REGISTER_COMPONENT_WORKING(network::component)
REGISTER_COMPONENT(network::component)

View File

@ -313,4 +313,4 @@ namespace party
};
}
REGISTER_COMPONENT_WORKING(party::component)
REGISTER_COMPONENT(party::component)

View File

@ -33,4 +33,4 @@ namespace patches
};
}
REGISTER_COMPONENT_WORKING(patches::component)
REGISTER_COMPONENT(patches::component)

View File

@ -187,4 +187,4 @@ namespace scheduler
};
}
REGISTER_COMPONENT_WORKING(scheduler::component)
REGISTER_COMPONENT(scheduler::component)

View File

@ -134,4 +134,4 @@ namespace script
};
};
REGISTER_COMPONENT_WORKING(script::component)
REGISTER_COMPONENT(script::component)

View File

@ -145,4 +145,4 @@ namespace server_list
};
}
REGISTER_COMPONENT_WORKING(server_list::component)
REGISTER_COMPONENT(server_list::component)

View File

@ -195,4 +195,4 @@ namespace splash
}
}
REGISTER_COMPONENT_WORKING(splash::component)
REGISTER_COMPONENT(splash::component)

View File

@ -317,4 +317,4 @@ namespace steam_proxy
}
}
REGISTER_COMPONENT_WORKING(steam_proxy::component)
REGISTER_COMPONENT(steam_proxy::component)

View File

@ -507,4 +507,4 @@ namespace ui_scripting
};
}
REGISTER_COMPONENT_WORKING(ui_scripting::component)
REGISTER_COMPONENT(ui_scripting::component)

View File

@ -63,4 +63,4 @@ namespace updater
};
}
REGISTER_COMPONENT_WORKING(updater::component)
REGISTER_COMPONENT(updater::component)

View File

@ -38,10 +38,8 @@ namespace component_loader
};
};
#define REGISTER_COMPONENT_WORKING(name) \
#define REGISTER_COMPONENT(name) \
namespace \
{ \
component_loader::installer<name> __component; \
}
#define REGISTER_COMPONENT(name)