Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef MYDLLEXPORTS_H
- #define MYDLLEXPORTS_H
- #ifdef __BUILDING_DLL
- #define MYDLLEXPORT __declspec(dllexport)
- #else
- #define MYDLLEXPORT __declspec(dllimport)
- #endif
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- MYDLLEXPORT wchar_t *__stdcall deneme(wchar_t *girdi);
- #ifdef __cplusplus
- }
- #endif
- #endif
Advertisement
Add Comment
Please, Sign In to add comment