Prototype function

Just starting out? Need help? Post your questions and find answers here.
loulou2522
Enthusiast
Enthusiast
Posts: 501
Joined: Tue Oct 14, 2014 12:09 pm

Prototype function

Post by loulou2522 »

Here is what i want ot translate in PureBasic
Define.l p1=12345678,p2=12345678
;Définition function
;Long UniKey_User_Logon(WORD* pHandle, DWORD* pPassword1, DWORD* pPassword2);
How can i translate that with prototype ?
Thanks
User avatar
spikey
Enthusiast
Enthusiast
Posts: 586
Joined: Wed Sep 22, 2010 1:17 pm
Location: United Kingdom

Re: Prototype function

Post by spikey »

Code: Select all

Prototype.L UniKey_User_Logon(*pHandle, *pPassword1, *pPassword2)
Post Reply