-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated copyright
- Loading branch information
Showing
26 changed files
with
224 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* Copyright (C) 2020 - 2021 Gleb Bezborodov - All Rights Reserved | ||
* You may use, distribute and modify this code under the | ||
* terms of the MIT license. | ||
* | ||
* You should have received a copy of the MIT license with | ||
* this file. If not, please write to: [email protected], or visit : https://github.com/glensand/visual-studio-compatibility | ||
*/ | ||
|
||
#pragma once | ||
|
||
#ifdef MYDLL_EXPORTS | ||
#define API __declspec(dllexport) | ||
#else | ||
/*Enabled as "import" in the Client side for using already created dll file*/ | ||
#define API __declspec(dllimport) | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* Copyright (C) 2020 - 2021 Gleb Bezborodov - All Rights Reserved | ||
* You may use, distribute and modify this code under the | ||
* terms of the MIT license. | ||
* | ||
* You should have received a copy of the MIT license with | ||
* this file. If not, please write to: [email protected], or visit : https://github.com/glensand/visual-studio-compatibility | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "export.h" | ||
#include <vector> | ||
#include <string> | ||
|
||
class API export_class_110 final | ||
{ | ||
public: | ||
typedef std::vector<std::string> string_list_t; | ||
export_class_110(); | ||
~export_class_110(); | ||
|
||
string_list_t get_string_list() const; | ||
|
||
static export_class_110* create(); | ||
|
||
static void destroy(export_class_110* ptr); | ||
|
||
static void fill(string_list_t& list); | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Filter Include="export"> | ||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | ||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | ||
</Filter> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Text Include="ReadMe.txt" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClInclude Include="export.h"> | ||
<Filter>export</Filter> | ||
</ClInclude> | ||
<ClInclude Include="export_class_110.h"> | ||
<Filter>export</Filter> | ||
</ClInclude> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClCompile Include="export_class_110.cpp"> | ||
<Filter>export</Filter> | ||
</ClCompile> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* Copyright (C) 2020 - 2021 Gleb Bezborodov - All Rights Reserved | ||
* You may use, distribute and modify this code under the | ||
* terms of the MIT license. | ||
* | ||
* You should have received a copy of the MIT license with | ||
* this file. If not, please write to: [email protected], or visit : https://github.com/glensand/visual-studio-compatibility | ||
*/ | ||
|
||
#pragma once | ||
|
||
#ifdef MYDLL_EXPORTS | ||
/*Enabled as "export" while compiling the dll project*/ | ||
#define API __declspec(dllexport) | ||
#else | ||
#define API __declspec(dllimport) | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* Copyright (C) 2020 - 2021 Gleb Bezborodov - All Rights Reserved | ||
* You may use, distribute and modify this code under the | ||
* terms of the MIT license. | ||
* | ||
* You should have received a copy of the MIT license with | ||
* this file. If not, please write to: [email protected], or visit : https://github.com/glensand/visual-studio-compatibility | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "export.h" | ||
#include <vector> | ||
#include <string> | ||
|
||
class API export_class_141 final | ||
{ | ||
public: | ||
typedef std::vector<std::string> string_list_t; | ||
|
||
export_class_141(); | ||
~export_class_141(); | ||
|
||
string_list_t get_string_list() const; | ||
|
||
static export_class_141* create(); | ||
|
||
static void destroy(export_class_141* ptr); | ||
|
||
static void fill(string_list_t& list); | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Filter Include="export"> | ||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | ||
<Extensions>cpp;c;cc;cxx;c++;def;odl;idl;hpj;bat;asm;asmx</Extensions> | ||
</Filter> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClInclude Include="export.h"> | ||
<Filter>export</Filter> | ||
</ClInclude> | ||
<ClInclude Include="export_class_141.h"> | ||
<Filter>export</Filter> | ||
</ClInclude> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClCompile Include="export_class_141.cpp"> | ||
<Filter>export</Filter> | ||
</ClCompile> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.