Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. import inlinecpp
  2.  
  3. mymodule = inlinecpp.createLibrary(
  4. name='test',
  5. includes= '#include <RE/RE_Render.h>',
  6. function_sources=[
  7. """
  8. void test()
  9. {
  10. auto render = RE_Render::getMainRender();
  11. }
  12. """])
  13.  
  14. print mymodule.windowCount()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement