| 1. |
What Is Resource Dll? When And How We Can Use It? |
|
Answer» Resource DLL are those which contains recourse related to binary and no source code. Resource DLL can contain the FOLLOWINGS
Resource DLL can holds resources that can be shared between many applications and thus minimizes the size of each applications. Resource DLLs are loaded using LOADLIBRARY() and the with MFC API AfxSetResourceHandle() we SET the loaded resource DLL instance as our current resource instance. All the call of loading a resource line LoadIcon() etc. will now be loaded from the resource DLL. Necessary MFC APIs:
Resource DLL are those which contains recourse related to binary and no source code. Resource DLL can contain the followings Resource DLL can holds resources that can be shared between many applications and thus minimizes the size of each applications. Resource DLLs are loaded using LoadLibrary() and the with MFC API AfxSetResourceHandle() we set the loaded resource DLL instance as our current resource instance. All the call of loading a resource line LoadIcon() etc. will now be loaded from the resource DLL. Necessary MFC APIs: |
|