Guest User

Untitled

a guest
Jun 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. AContext context = Context();
  2.  
  3. SOA_encoder_init(&context);
  4. SOA_encoder_start(&context);
  5.  
  6. SOA_encoder_deinit(&context);
  7.  
  8. // OR
  9. // PContext = Context * in header
  10. PContext pContext = NewContext();
  11.  
  12. SOA_encoder_init(pContext);
  13. SOA_encoder_start(pContext);
  14.  
  15. DeleteContext(pContext);
Add Comment
Please, Sign In to add comment