I have a ListBox in a Windows app that lists the people in a chat session. This is defined as follows:
Win32::API::Struct->typedef('UserItem', qw {
USHORT uid;
TCHAR realName[256];
TCHAR aliasName[256];
}
) or die "Typedef error $! \n";
my $user_data = Win32::API::Struct->new('UserItem');
Now I want to send a LB_GETITEMDATA message to the window to the get the attendee item details defined by the struct.
Using Win32::API, I do this:
my $LB_GETITEMDATA = 0x0199;
my $SendMessage = Win32::API->new("user32", "SendMessage", "NNNN", "S");
... # Here is the code to find the window handle, which is $hwnd.
$user_data = $SendMessage->Call($hwnd, $LB_GETITEMDATA, 0, 0); # Get the first item.
Now, I'd think $user_data struct will contain the first item's details, but it is actually undef & I don't get any LB_ERR either. What am I doing wrong?