Board index » delphi » Translate into Delphi 2

Translate into Delphi 2

Hi All,
 Another translation question I have is the following :

Hi all,
 How would I translate the following into Delphi statements :

    HRESULT GetUserData(
     [in] REFGUID rguid,
     [out] BYTE **ppb,
     [out] ULONG *pcb);

Thanks in advance,

  Eyal Hirsch.

 

Re:Translate into Delphi 2


function GetUserData (const rguid : TGuid; out ppb : byte; out pcb : ulong)
: hresult;

have fun
--
Binh Ly
Visit my COM Notes at http://www.castle.net/~bly/com

Quote
Eyal Hirsch <eyal...@netvision.net.il> wrote in message

news:37CE6C62.90D35E1D@netvision.net.il...
Quote
> Hi All,
>  Another translation question I have is the following :

> Hi all,
>  How would I translate the following into Delphi statements :

>     HRESULT GetUserData(
>      [in] REFGUID rguid,
>      [out] BYTE **ppb,
>      [out] ULONG *pcb);

> Thanks in advance,

>   Eyal Hirsch.

Other Threads