diff --git a/TODO.md b/TODO.md index 2de3f267..f5eb8ec1 100644 --- a/TODO.md +++ b/TODO.md @@ -58,6 +58,7 @@ - clean up bin handling - is binSetOSParent() even needed? - readd the allocation tracking as just a list of pointers +- add a final cleanup function (uiUninit() or uiCleanup()) ultimately: - add some sort of runtime type checking diff --git a/windows/init.c b/windows/init.c index 1905cc54..3b500233 100644 --- a/windows/init.c +++ b/windows/init.c @@ -115,6 +115,5 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { if (fdwReason == DLL_PROCESS_ATTACH) hInstance = hinstDLL; - // TODO provide a cleanup function return TRUE; }