libwolfssl.c 431 B

1234567891011121314151617181920
  1. // libwolfssl.c
  2. // Defines the entry point for the DLL application
  3. #include <rt.h>
  4. BOOLEAN __stdcall RslMain( RTHANDLE hModule,
  5. DWORD ul_reason_for_call,
  6. LPVOID lpReserved
  7. )
  8. {
  9. switch (ul_reason_for_call) {
  10. case RSL_PROCESS_ATTACH:
  11. case RSL_THREAD_ATTACH:
  12. case RSL_THREAD_DETACH:
  13. case RSL_PROCESS_DETACH:
  14. break;
  15. }
  16. return TRUE;
  17. }