Hello
I am working to load CoInitialize using getprocaddress, but I don't know why this function fail and cash program! It didn't happen with other functions in other libraries like kernel32.dll. Here is my test :

Code:
typedef HRESULT (*pf)(LPVOID);
	 
pf rf = (pf)GetProcAddress(LoadLibrary(ole32.dll), "CoInitialize"); 
CoInitialize(NULL); // This line crashes the program!!
Do you know why and how to properly load it ?