I'm using the Win32api
module. I want to know what the L's
and P's
mean in the following line:
function = Win32API.new('user32', 'MessageBox', ['L', 'P', 'P', 'L'], 'I')
I know that user32
is the dll from which the MessageBox
function is called from, but what do the L's
, P's
, and the I
do, more specifically what do they stand for?