Poenotil sem verzijo.

Verzijo sem nastavil na 1.0-pre.
This commit is contained in:
Simon Rozman 2014-03-12 13:46:43 +00:00
parent fae3a5eeca
commit 6fa94e0d2f
7 changed files with 17 additions and 38 deletions

1
.gitattributes vendored
View File

@ -25,4 +25,5 @@ include/Debug.props -text svneol=unset#text/xml
include/Release.props -text svneol=unset#text/xml
include/Win32.props -text svneol=unset#text/xml
include/common.props -text svneol=unset#text/xml
include/version.h -text
include/x64.props -text svneol=unset#text/xml

View File

@ -5,6 +5,11 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MSICALib", "MSICALib\MSICAL
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MSITSCA", "MSITSCA\MSITSCA.vcxproj", "{A7D9EBC1-1E64-4399-9C88-6692F8742153}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F3D5C008-7728-49CA-84F1-12C186FC87F8}"
ProjectSection(SolutionItems) = preProject
include\version.h = include\version.h
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32

View File

@ -1,21 +1,6 @@
#ifndef __MSICALib_H__
#define __MSICALib_H__
////////////////////////////////////////////////////////////////////////////
// Version
////////////////////////////////////////////////////////////////////////////
#define MSICALib_VERSION 0x02000000
#define MSICALib_VERSION_MAJ 2
#define MSICALib_VERSION_MIN 0
#define MSICALib_VERSION_REV 0
#define MSICALib_VERSION_STR "2.0"
#if !defined(RC_INVOKED) && !defined(MIDL_PASS)
#include <atlbase.h>
#include <atlcoll.h>
#include <atlfile.h>
@ -1424,6 +1409,4 @@ template <class T> inline HRESULT COpList::LoadAndAddTail(ATL::CAtlFile &f)
} // namespace MSICA
#endif // RC_INVOKED
#endif // __MSICALib_H__

View File

@ -1,23 +1,6 @@
#ifndef __MSITSCA_H__
#define __MSITSCA_H__
////////////////////////////////////////////////////////////////////////////
// Constants
////////////////////////////////////////////////////////////////////////////
#define MSITSCA_VERSION 0x02010100
#define MSITSCA_VERSION_MAJ 2
#define MSITSCA_VERSION_MIN 1
#define MSITSCA_VERSION_REV 1
#define MSITSCA_VERSION_BUILD 0
#define MSITSCA_VERSION_STR "2.1.1"
#define MSITSCA_BUILD_YEAR_STR "2014"
#if !defined(RC_INVOKED) && !defined(MIDL_PASS)
#include <msi.h>
@ -48,6 +31,4 @@ extern "C" {
}
#endif
#endif // !defined(RC_INVOKED) && !defined(MIDL_PASS)
#endif // __MSITSCA_H__

Binary file not shown.

View File

@ -32,6 +32,6 @@
#include <stdlib.h>
#include <time.h>
#include "MSITSCA.h"
#include "..\MSICALib\MSICALib.h"
#include "MSITSCA.h"

9
include/version.h Normal file
View File

@ -0,0 +1,9 @@
#define MSICA_VERSION 0x00ff0000
#define MSICA_VERSION_MAJ 0
#define MSICA_VERSION_MIN 255
#define MSICA_VERSION_REV 0
#define MSICA_VERSION_BUILD 0
#define MSICA_VERSION_STR "1.0-pre"
#define MSICA_BUILD_YEAR_STR "2014"