diff --git a/Doxyfile b/Doxyfile index 27cd0a5..ebffe3b 100644 --- a/Doxyfile +++ b/Doxyfile @@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8 # title of most generated pages and in a few other places. # The default value is: My Project. -PROJECT_NAME = "libatl" +PROJECT_NAME = "atlex" # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version diff --git a/README.md b/README.md index cefb6e7..0faee92 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ -#libatl +#atlex Provides additional templates and function helpers for Microsoft Active Template Library ##Building -- The _.h_ files can be used individually. However, we do encourage you to include the entire library project and reference it in dependant projects of your solution, as libatl might develop some non-inline code over time. +- The _.h_ files can be used individually. However, we do encourage you to include the entire library project and reference it in dependant projects of your solution, as atlex might develop some non-inline code over time. - The _libatl.vcxproj_ requires Microsoft Visual Studio 2010 SP1 and _..\\..\\include_ folder with _common.props_, _Debug.props_, _Release.props_, _Win32.props_, and _x64.props_ files to customize building process for individual applications. ##Usage 1. Clone the repository into your solution folder. 2. Add the _libatl.vcxproj_ to your solution. -3. Add libatl's _include_ folder to _Additional Include Directories_ in your project's C/C++ settings. -4. Add a new reference to libatl project from your project's common properties. -5. Include _.h_ files from libatl as needed: +3. Add atlex's _include_ folder to _Additional Include Directories_ in your project's C/C++ settings. +4. Add a new reference to atlex project from your project's common properties. +5. Include _.h_ files from atlex as needed: ```C #include #include diff --git a/build/libatl.props b/build/atlex.props similarity index 100% rename from build/libatl.props rename to build/atlex.props diff --git a/build/libatl.vcxproj b/build/atlex.vcxproj similarity index 94% rename from build/libatl.vcxproj rename to build/atlex.vcxproj index 3807c91..13115dd 100644 --- a/build/libatl.vcxproj +++ b/build/atlex.vcxproj @@ -20,7 +20,7 @@ {5A4EADF2-3237-457A-9DA8-BB9942A91019} - libatl + atlex Win32Proj @@ -48,28 +48,28 @@ - + - + - + - + diff --git a/build/libatl.vcxproj.filters b/build/atlex.vcxproj.filters similarity index 100% rename from build/libatl.vcxproj.filters rename to build/atlex.vcxproj.filters diff --git a/include/atlcrypt.h b/include/atlcrypt.h index ecc0690..fb061ee 100644 --- a/include/atlcrypt.h +++ b/include/atlcrypt.h @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/include/atleap.h b/include/atleap.h index bd2b4ad..dd48d38 100644 --- a/include/atleap.h +++ b/include/atleap.h @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/include/atlex.h b/include/atlex.h index 972e42d..aea08d6 100644 --- a/include/atlex.h +++ b/include/atlex.h @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/include/atlmsi.h b/include/atlmsi.h index 307c9c2..d11b7e1 100644 --- a/include/atlmsi.h +++ b/include/atlmsi.h @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/include/atlsec.h b/include/atlsec.h index e860d0a..ea55b79 100644 --- a/include/atlsec.h +++ b/include/atlsec.h @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/include/atlshlwapi.h b/include/atlshlwapi.h index 3a8a22c..f04966b 100644 --- a/include/atlshlwapi.h +++ b/include/atlshlwapi.h @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/include/atlwin.h b/include/atlwin.h index 86a2d54..91c07ad 100644 --- a/include/atlwin.h +++ b/include/atlwin.h @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/include/atlwlan.h b/include/atlwlan.h index eeb0c38..26b198a 100644 --- a/include/atlwlan.h +++ b/include/atlwlan.h @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/include/stdafx.h b/include/stdafx.h index 2176ab9..6d3b940 100644 --- a/include/stdafx.h +++ b/include/stdafx.h @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/libatl.sln b/libatl.sln index 95e3b8a..ef105f7 100644 --- a/libatl.sln +++ b/libatl.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libatl", "build\libatl.vcxproj", "{5A4EADF2-3237-457A-9DA8-BB9942A91019}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "atlex", "build\atlex.vcxproj", "{5A4EADF2-3237-457A-9DA8-BB9942A91019}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/src/stdafx.cpp b/src/stdafx.cpp index c7fa84d..f422318 100644 --- a/src/stdafx.cpp +++ b/src/stdafx.cpp @@ -1,7 +1,7 @@ /* Copyright 1991-2016 Amebis - This file is part of libatl. + This file is part of atlex. Setup is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by