| | |
| | | |
| | | #ifdef __unix__ |
| | | #define DllExport |
| | | #define MAX_PATH 1024 |
| | | #ifndef MAX_PATH |
| | | #define MAX_PATH 1024 |
| | | #endif |
| | | #else |
| | | #include <windows.h> |
| | | #define DllExport __declspec( dllexport ) |
| | |
| | | * Should be called from time to time to confirm we're still using the |
| | | * slicense. |
| | | */ |
| | | DllExport enum EVENT_TYPE confirm_license(char * productName, |
| | | DllExport EVENT_TYPE confirm_license(char * productName, |
| | | LicenseLocation licenseLocation); |
| | | /** |
| | | * Do nothing for now, useful for network licenses. |
| | | */ |
| | | DllExport enum EVENT_TYPE release_license(char * productName, |
| | | DllExport EVENT_TYPE release_license(char * productName, |
| | | LicenseLocation licenseLocation); |
| | | |
| | | #ifdef __cplusplus |