Guest User

Untitled

a guest
Dec 6th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Vala 0.16 KB | None | 0 0
  1. public delegate void DestroyNotifyData(void *data);
  2.  
  3. public DestroyNotifyData get_destroy_notify<G> () {
  4.     return (ptr) => {
  5.         G *gptr = ptr;
  6.         delete gptr;
  7.     };
  8. }
Add Comment
Please, Sign In to add comment