I wish to customize my own folder style, I tried to make the folder get remarks by modifying the LocalizedResourceName
property in desktop.ini
.
I try to set LocalizedResourceName
to a Chinese string. But it is displayed as garbled characters when it is actually displayed.
I noticed the following code in the desktop.ini
of the system folder:
LocalizedResourceName=@%SystemRoot%\system32\shell32.dll,-21798
So I try to write a .dll file by myself, encapsulate the icon and string, and use it.
I already know how to make a resource-only dll file, but I don't know how to get a certain resource in the file. (ie, get the number -21798
in the above example code)
How should I do ?