dllmain.cpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // This file is part of HDRip.
  2. //
  3. // HDRip is free software: you can redistribute it and/or modify it
  4. // under the terms of the GNU General Public License as published by
  5. // the Free Software Foundation, either version 3 of the License, or
  6. // (at your option) any later version.
  7. //
  8. // HDRip is distributed in the hope that it will be useful, but
  9. // WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with HDRip. If not, see <https://www.gnu.org/licenses/>.
  15. //
  16. // HDRip project
  17. // Author : Rémi Synave
  18. // Contact : remi.synave@univ-littoral.fr
  19. // dllmain.cpp : Définit le point d'entrée de l'application DLL.
  20. #include "pch.h"
  21. BOOL APIENTRY DllMain( HMODULE hModule,
  22. DWORD ul_reason_for_call,
  23. LPVOID lpReserved
  24. )
  25. {
  26. switch (ul_reason_for_call)
  27. {
  28. case DLL_PROCESS_ATTACH:
  29. case DLL_THREAD_ATTACH:
  30. case DLL_THREAD_DETACH:
  31. case DLL_PROCESS_DETACH:
  32. break;
  33. }
  34. return TRUE;
  35. }