From 8bea2e0fbebf88061826092ebd8208a742cb14f3 Mon Sep 17 00:00:00 2001
From: Maximilien Siavelis <maximilien.siavelis@simulease.com>
Date: 周六, 13 1月 2018 01:38:59 +0800
Subject: [PATCH] remove dllexport

---
 src/library/api/license++.h |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/library/api/license++.h b/src/library/api/license++.h
index 13960b0..faece34 100644
--- a/src/library/api/license++.h
+++ b/src/library/api/license++.h
@@ -27,13 +27,13 @@
  * Method used to convert the LicenseInfo into a human readable
  * representation.
  */
-DllExport void print_error(char out_buffer[256], LicenseInfo* licenseInfo);
+void print_error(char out_buffer[256], LicenseInfo* licenseInfo);
 
 /**
  * This method calculate the pc identifier. The string has to be shown
  * to the user in order to calculate the license.
  */
-DllExport void identify_pc(IDENTIFICATION_STRATEGY pc_id_method,
+void identify_pc(IDENTIFICATION_STRATEGY pc_id_method,
 		char chbuffer[PC_IDENTIFIER_SIZE + 1]);
 /*
  * The optional parameter License contains the information the program that uses the library
@@ -45,7 +45,7 @@
  * @param license[out] optional, can be NULL.
  */
 
-DllExport EVENT_TYPE acquire_license(const char * productName,
+EVENT_TYPE acquire_license(const char * productName,
 		LicenseLocation licenseLocation, LicenseInfo* license);
 
 /**
@@ -53,12 +53,12 @@
  * Should be called from time to time to confirm we're still using the
  * slicense.
  */
-DllExport EVENT_TYPE confirm_license(char * productName,
+EVENT_TYPE confirm_license(char * productName,
 		LicenseLocation licenseLocation);
 /**
  * Do nothing for now, useful for network licenses.
  */
-DllExport EVENT_TYPE release_license(char * productName,
+EVENT_TYPE release_license(char * productName,
 		LicenseLocation licenseLocation);
 
 #ifdef __cplusplus

--
Gitblit v1.9.1