QString
Today, we’ll talk about the “simplest” class of Qt, a class we use every day, a class we often do need to care about the details – QString. Despite the […]
Today, we’ll talk about the “simplest” class of Qt, a class we use every day, a class we often do need to care about the details – QString. Despite the […]
If you build a dll using Mingw g++ like: g++ -shared -o myprogrammingnotes.dll myprogrammingnotes.cpp If __declspec(dllexport) is not present in the source file, all functions except the entry point function(DllMain) […]
This is what it looks like when writing an int 0x123456 to a file viewed in hex view of notepad++. At the first glance, you cannot match it with the […]
When a thread calls CoInitialize(NULL) or CoInitializeEx(NULL,COINIT_APARTMENTTHREADED), it creates a new STA apartment. The creating thread is said to be in the apartment. When the thread later instantiates a COM […]
When a program calls the COM lib function CoCreateInstance, what will happen? What work does CoCreateInstance do? How does CoCreateInstance work? The function has a parameter classid. The function looks […]
Unlike science, technique is easy to be followed, cracked, hacked, copied, plagiarized, stolen, even surpassed by others so it need some barriers. Why are there so many evil words associated […]
I hear the DllMain function is called when the process loads the needed dll at the start time, so I write the following code to verify this: //mydll.cpp #include <windows.h> […]
Suppose you have a myprogrammingnotes.dll that contains a COM object. You want to instantiate and use that COM object in your Qt app. How to do that? If myprogrammingnotes.dll contains […]
When running “regsvr32 some.dll”, what keys/names/values are added in the registry?(note that regsvr32 can register both 32bit dll and 64 bit dll on 64bit Windows) Computer\HKEY_CLASSES_ROOT\yourapp.YOURCLASSBinder\ CLSID CurVer Computer\HKEY_CLASSES_ROOT\yourapp.YOURCLASSBinder.1\ CLSID […]
You must know how to use QSslSocket::supportsSsl in your app to check if your Qt lib supports ssl. How does QSslSocket::supportsSsl decide if it supports ssl or not? The function […]