From e808b155cc8c41fdff27ce41c054c7b6920c02e8 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 4 May 2015 20:11:58 -0400 Subject: [PATCH] Moved a TODO to the long-term TODO list. --- TODO.md | 1 + windows/init.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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; }