Q&A

  • 호출된 Dll을 메모리에서 지우는 방법 좀....
안녕하세요?



MDI로 각 SubProgram을 DLL로 만들어 호출하는 방식입니다.

호출된SubProgram의 Form을 Close하였는데도 DLL화일은 메모리에 그대로 남아 있는것 같습니다.

호출된 DLL을 메모리에서 제거하는 방법 좀 부탁드립니다.....



그럼 좋은하루되세요.....





1  COMMENTS
  • Profile
    . 2001.05.30 01:46
    FreeLibrary:



    The FreeLibrary function decrements the reference count of the loaded dynamic-link library (DLL). When the reference count reaches zero, the module is unmapped from the address space of the calling process and the handle is no longer valid.



    BOOL FreeLibrary(

    HMODULE hModule // handle to DLL module

    );