hackedteam/rcs-db

View on GitHub
hasp/hasp-key/hasp-key.h

Summary

Maintainability
Test Coverage
// The following ifdef block is the standard way of creating macros which make exporting 
// from a DLL simpler. All files within this DLL are compiled with the HASPKEY_EXPORTS
// symbol defined on the command line. This symbol should not be defined on any project
// that uses this DLL. This way any other project whose source files include this file see 
// HASPKEY_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
#ifdef HASPKEY_EXPORTS
#define HASPKEY_API __declspec(dllexport)
#else
#define HASPKEY_API __declspec(dllimport)
#endif

HASPKEY_API int fnhaspkey(void);