hb860, извиняюсь за столь необычный вопрос, но хотелось уточнить, вдруг подскажите:
Код:
4.9.3.13 RegDLL
dllfile [entrypoint_name]
Loads the specified DLL and calls DllRegisterServer (or entrypoint_name if specified). The error flag is set if an error occurs (i.e. it can't load the DLL, initialize OLE, find the entry point, or the function returned anything other than ERROR_SUCCESS (=0)).
Use SetOutPath to set the current directory for DLLs that depend on other DLLs that are now in the path or in the Windows directory. For example, if foo.dll depends on bar.dll which is located in $INSTDIR use:
SetOutPath $INSTDIR
RegDLL $INSTDIR\foo.dll
Собственно интересует [entrypoint_name] , я правильно понял, что можно на DLL, прописать определённое имя раздела в HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID , например, {A7A63E5C-3877-4840-8727-C1EA9D7A4D50} или [entrypoint_name] для чего другого? Если я прав, то как правильно указать [entrypoint_name] , в каком формате?