Maybe I have this all completely wrong because I don't know what I'm doing, but I'm trying to work with win32 programming and I want to get the position of all the items on the desktop.
I've found the handle for the desktop and I've found the LVM constants in commctrl.py
But I really have no idea what I'm doing.
import commctrl
import win32gui
print win32gui.SendMessage(1310822,commctrl.LVM_GETITEMPOSITION)
Unfortunately this only returns 0. I don't know what I'm doing and all I can find online is instructions for how to do this in other programming languages, which I don't understand.