2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 05:47:42 +00:00

Add HECL_DLPACKAGE macro

This commit is contained in:
Jack Andersen
2018-01-01 14:58:13 -10:00
parent 308af03115
commit ab5d3ac996
2 changed files with 8 additions and 0 deletions

View File

@@ -90,6 +90,12 @@ int wmain(int argc, const wchar_t** argv)
int main(int argc, const char** argv)
#endif
{
if (argc > 1 && !hecl::StrCmp(argv[1], _S("--dlpackage")))
{
printf("%s\n", HECL_DLPACKAGE);
return 100;
}
#if _WIN32
CoInitializeEx(nullptr, COINIT_MULTITHREADED | COINIT_DISABLE_OLE1DDE);
#else