Dimenticare

Example DLL (for use with Game Maker)

Feb 12th, 2016
877
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #define GMEXPORT extern "C" __declspec(dllexport)
  2.  
  3. GMEXPORT double cube(double n){
  4.     return n*n*n;
  5. }
  6.  
  7. GMEXPORT double aplusb(double a, double b){
  8.     return a+b;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment