Lorin_P

I am writing a Home plugin COM DLL for the Smartphone. I have a skeleton working. I would like to use another DLL I have written within the COM DLL. When I include use of the other DLL in the COM DLL, the COM DLL builds ok, but fails to load on the Smartphone. Could this be due to the other DLL being in my unique directory on the Smartphone If so, is there a way to tell the Smartphone where to look for other DLLs, like setting a PATH

Re: Smart Devices Native C++ Development COM DLL loading problem

AlexFeinman

There is no concept of path env variable on Windows CE. You either need to place this DLL in the same directory as plugin, place it into the Windows directory, or load it dynamically by specifying the full path and then use GetProcAddress to obtain the function pointers