Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. typedef struct CallbackStru
  2. {
  3. UINT16 type; /*type of callback*/
  4. void *func; /*callback function*/
  5. }CallbackStru, *tCallbackStru;
  6.  
  7. [StructLayout(LayoutKind.Sequential)]
  8. public struct CallbackStructure
  9. {
  10. public ushort type;
  11. public object func;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement