How can i convert to c#? (typedef void (*SWFByteOutputMethod) (byte b, void *data);)

  • Thread starter Thread starter Michael
  • Start date Start date
M

Michael

Now, i'm converting some c source to c#.
Then I can't convert the following statement?
Help me...

typedef void (*SWFByteOutputMethod) (byte b, void *data);





Following is usage of it...

void writeSWFFontToMethod(SWFBlock block, SWFByteOutputMethod method, void *data)
 
typedef void (*SWFByteOutputMethod) (byte b, void *data);

delegate void SWFByteOutputMethod( byte b, IntPtr data );
 
Back
Top