Guest User

Untitled

a guest
May 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. guint id = g_timeout_add (5000,(GSourceFunc)fun(), NULL);
  2.  
  3. bool fun()
  4. {
  5. return false;
  6. }
  7.  
  8. guint id = g_timeout_add (5000,(GSourceFunc)fun(), NULL);
  9.  
  10. guint id = g_timeout_add (5000,(GSourceFunc)fun, NULL);
Add Comment
Please, Sign In to add comment