rvelthuis

MyDLLExports.h

Oct 13th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #ifndef MYDLLEXPORTS_H
  2. #define MYDLLEXPORTS_H
  3.  
  4. #ifdef __BUILDING_DLL
  5. #define MYDLLEXPORT __declspec(dllexport)
  6. #else
  7. #define MYDLLEXPORT __declspec(dllimport)
  8. #endif
  9.  
  10. #ifdef __cplusplus
  11. extern "C"
  12. {
  13. #endif
  14.  
  15. MYDLLEXPORT wchar_t *__stdcall deneme(wchar_t *girdi);
  16.  
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20.  
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment