Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. firstDll
  2.     Core.start("first")
  3. secondDll
  4.     core.start("second")
  5.  
  6. Core(lib)
  7.     void start()
  8.     if "first" compiled :
  9.     #include "firstAddOn\macros.h"
  10.     else if "Second" compiled :
  11.     #include "secondAddOn\macros.h"
  12.  
  13.  
  14. firstAddOn(lib)
  15.     macros.h
  16.  
  17. secondAddOn(lib)
  18.     macros.h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement