Dodal sem začetno verzijo projekta.
This commit is contained in:
parent
24cb062951
commit
aa287ccb88
9
.gitattributes
vendored
9
.gitattributes
vendored
@ -1 +1,10 @@
|
|||||||
* text=auto !eol
|
* text=auto !eol
|
||||||
|
MSICALib/MSITSCA.cpp -text
|
||||||
|
MSICALib/MSITSCA.h -text
|
||||||
|
MSICALib/MSITSCA.vcxproj -text svneol=unset#text/xml
|
||||||
|
MSICALib/MSITSCA.vcxproj.filters -text svneol=unset#text/xml
|
||||||
|
MSICALib/StdAfx.cpp -text
|
||||||
|
MSICALib/StdAfx.h -text
|
||||||
|
MSICALib/res/MSITSCA.rc -text
|
||||||
|
MSICALib/res/MSITSCA.rcx -text svneol=unset#text/plain
|
||||||
|
MSICALib/res/en_GB.po -text
|
||||||
|
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
MSICALib/*.user
|
||||||
|
MSICALib/Debug.Win32
|
||||||
|
MSICALib/Debug.x64
|
||||||
|
MSICALib/Release.Win32
|
||||||
|
MSICALib/Release.x64
|
||||||
|
MSICALib/Unicode[!!-~]Debug.Win32
|
||||||
|
MSICALib/Unicode[!!-~]Debug.x64
|
||||||
|
MSICALib/Unicode[!!-~]Release.Win32
|
||||||
|
MSICALib/Unicode[!!-~]Release.x64
|
||||||
|
MSICALib/res/*.mo
|
41
MSICALib/MSITSCA.cpp
Normal file
41
MSICALib/MSITSCA.cpp
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
#include "StdAfx.h"
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Globalne spremenljivke
|
||||||
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
HINSTANCE MSITSCA::hInstance = NULL;
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Globalne funkcije
|
||||||
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
|
||||||
|
{
|
||||||
|
UNREFERENCED_PARAMETER(lpReserved);
|
||||||
|
|
||||||
|
switch (dwReason) {
|
||||||
|
case DLL_PROCESS_ATTACH:
|
||||||
|
MSITSCA::hInstance = hInstance;
|
||||||
|
case DLL_THREAD_ATTACH:
|
||||||
|
case DLL_THREAD_DETACH:
|
||||||
|
case DLL_PROCESS_DETACH:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Javne funkcije
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
UINT MSITSCA_API InstallScheduledTask(MSIHANDLE hSession)
|
||||||
|
{
|
||||||
|
UNREFERENCED_PARAMETER(hSession);
|
||||||
|
|
||||||
|
return ERROR_SUCCESS;
|
||||||
|
}
|
69
MSICALib/MSITSCA.h
Normal file
69
MSICALib/MSITSCA.h
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
#ifndef __MSITSCA_H__
|
||||||
|
#define __MSITSCA_H__
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Konstante
|
||||||
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#define MSITSCA_VERSION 0x01000000
|
||||||
|
|
||||||
|
#define MSITSCA_VERSION_MAJ 1
|
||||||
|
#define MSITSCA_VERSION_MIN 0
|
||||||
|
#define MSITSCA_VERSION_REV 0
|
||||||
|
|
||||||
|
#define MSITSCA_VERSION_STR "1.0"
|
||||||
|
#define MSITSCA_VERSION_INST "1.0.0.0"
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Kode virov
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#define IDR_MAINFRAME 1
|
||||||
|
// TODO: Dodaj definicije konstant virov tukaj.
|
||||||
|
|
||||||
|
#if !defined(RC_INVOKED) && !defined(MIDL_PASS)
|
||||||
|
|
||||||
|
#include <msi.h>
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Naèin klicanja funkcij
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#if defined(MSITSCA_DLL)
|
||||||
|
#define MSITSCA_API __declspec(dllexport)
|
||||||
|
#elif defined(MSITSCA_DLLIMP)
|
||||||
|
#define MSITSCA_API __declspec(dllimport)
|
||||||
|
#else
|
||||||
|
#define MSITSCA_API
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Javne funkcije
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
UINT MSITSCA_API InstallScheduledTask(MSIHANDLE hSession);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Globalne funkcije in spremenljivke
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace MSITSCA {
|
||||||
|
extern HINSTANCE hInstance; // roèica modula
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // !defined(RC_INVOKED) && !defined(MIDL_PASS)
|
||||||
|
|
||||||
|
#endif // __MSITSCA_H__
|
280
MSICALib/MSITSCA.vcxproj
Normal file
280
MSICALib/MSITSCA.vcxproj
Normal file
@ -0,0 +1,280 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Unicode Debug|Win32">
|
||||||
|
<Configuration>Unicode Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Unicode Debug|x64">
|
||||||
|
<Configuration>Unicode Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Unicode Release|Win32">
|
||||||
|
<Configuration>Unicode Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Unicode Release|x64">
|
||||||
|
<Configuration>Unicode Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<ProjectGuid>{A7D9EBC1-1E64-4399-9C88-6692F8742153}</ProjectGuid>
|
||||||
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseOfAtl>Static</UseOfAtl>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseOfAtl>Static</UseOfAtl>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseOfAtl>Static</UseOfAtl>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseOfAtl>Static</UseOfAtl>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseOfAtl>Static</UseOfAtl>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseOfAtl>Static</UseOfAtl>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseOfAtl>Static</UseOfAtl>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<UseOfAtl>Static</UseOfAtl>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
<Import Project="$(VCTargetsPath)\BuildCustomizations\rcxgettext.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Release|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebis.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisRelease.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisWin32.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebis.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisDebug.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisWin32.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebis.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisRelease.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisWin32.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebis.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisDebug.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisWin32.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Release|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebis.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisRelease.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebisx64.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebis.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisDebug.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebisx64.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebis.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisRelease.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebisx64.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebis.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\AmebisDebug.props" />
|
||||||
|
<Import Project="$(VCInstallDir)VCProjectDefaults\Amebisx64.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\Test\$(Configuration).$(Platform)\</OutDir>
|
||||||
|
<IgnoreImportLibrary Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</IgnoreImportLibrary>
|
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..\Test\$(Configuration).$(Platform)\</OutDir>
|
||||||
|
<IgnoreImportLibrary Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</IgnoreImportLibrary>
|
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\Test\$(Configuration).$(Platform)\</OutDir>
|
||||||
|
<IgnoreImportLibrary Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</IgnoreImportLibrary>
|
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\Test\$(Configuration).$(Platform)\</OutDir>
|
||||||
|
<IgnoreImportLibrary Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</IgnoreImportLibrary>
|
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|Win32'">..\Test\$(Configuration).$(Platform)\</OutDir>
|
||||||
|
<IgnoreImportLibrary Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|Win32'">true</IgnoreImportLibrary>
|
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|x64'">..\Test\$(Configuration).$(Platform)\</OutDir>
|
||||||
|
<IgnoreImportLibrary Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|x64'">true</IgnoreImportLibrary>
|
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Unicode Release|Win32'">..\Test\$(Configuration).$(Platform)\</OutDir>
|
||||||
|
<IgnoreImportLibrary Condition="'$(Configuration)|$(Platform)'=='Unicode Release|Win32'">true</IgnoreImportLibrary>
|
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Unicode Release|x64'">..\Test\$(Configuration).$(Platform)\</OutDir>
|
||||||
|
<IgnoreImportLibrary Condition="'$(Configuration)|$(Platform)'=='Unicode Release|x64'">true</IgnoreImportLibrary>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
</Link>
|
||||||
|
<Midl>
|
||||||
|
<HeaderFileName>%(Filename)_h.h</HeaderFileName>
|
||||||
|
</Midl>
|
||||||
|
<ClCompile />
|
||||||
|
<ResourceLocalizator>
|
||||||
|
<LanguageCatalogs>res\en_GB.po</LanguageCatalogs>
|
||||||
|
</ResourceLocalizator>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
</Link>
|
||||||
|
<Midl>
|
||||||
|
<HeaderFileName>%(Filename)_h.h</HeaderFileName>
|
||||||
|
</Midl>
|
||||||
|
<ClCompile />
|
||||||
|
<ResourceLocalizator>
|
||||||
|
<LanguageCatalogs>res\en_GB.po</LanguageCatalogs>
|
||||||
|
</ResourceLocalizator>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
</Link>
|
||||||
|
<Midl>
|
||||||
|
<HeaderFileName>%(Filename)_h.h</HeaderFileName>
|
||||||
|
</Midl>
|
||||||
|
<ClCompile />
|
||||||
|
<ResourceLocalizator>
|
||||||
|
<LanguageCatalogs>res\en_GB.po</LanguageCatalogs>
|
||||||
|
</ResourceLocalizator>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
</Link>
|
||||||
|
<Midl>
|
||||||
|
<HeaderFileName>%(Filename)_h.h</HeaderFileName>
|
||||||
|
</Midl>
|
||||||
|
<ClCompile />
|
||||||
|
<ResourceLocalizator>
|
||||||
|
<LanguageCatalogs>res\en_GB.po</LanguageCatalogs>
|
||||||
|
</ResourceLocalizator>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|Win32'">
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
</Link>
|
||||||
|
<Midl>
|
||||||
|
<HeaderFileName>%(Filename)_h.h</HeaderFileName>
|
||||||
|
</Midl>
|
||||||
|
<ClCompile />
|
||||||
|
<ResourceLocalizator>
|
||||||
|
<LanguageCatalogs>res\en_GB.po</LanguageCatalogs>
|
||||||
|
</ResourceLocalizator>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|x64'">
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
</Link>
|
||||||
|
<Midl>
|
||||||
|
<HeaderFileName>%(Filename)_h.h</HeaderFileName>
|
||||||
|
</Midl>
|
||||||
|
<ClCompile />
|
||||||
|
<ResourceLocalizator>
|
||||||
|
<LanguageCatalogs>res\en_GB.po</LanguageCatalogs>
|
||||||
|
</ResourceLocalizator>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Release|Win32'">
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
</Link>
|
||||||
|
<Midl>
|
||||||
|
<HeaderFileName>%(Filename)_h.h</HeaderFileName>
|
||||||
|
</Midl>
|
||||||
|
<ClCompile />
|
||||||
|
<ResourceLocalizator>
|
||||||
|
<LanguageCatalogs>res\en_GB.po</LanguageCatalogs>
|
||||||
|
</ResourceLocalizator>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Unicode Release|x64'">
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
</Link>
|
||||||
|
<Midl>
|
||||||
|
<HeaderFileName>%(Filename)_h.h</HeaderFileName>
|
||||||
|
</Midl>
|
||||||
|
<ClCompile />
|
||||||
|
<ResourceLocalizator>
|
||||||
|
<LanguageCatalogs>res\en_GB.po</LanguageCatalogs>
|
||||||
|
</ResourceLocalizator>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="MSITSCA.cpp" />
|
||||||
|
<ClCompile Include="StdAfx.cpp">
|
||||||
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||||
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
|
||||||
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||||
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
|
||||||
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|Win32'">Create</PrecompiledHeader>
|
||||||
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Unicode Debug|x64'">Create</PrecompiledHeader>
|
||||||
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Unicode Release|Win32'">Create</PrecompiledHeader>
|
||||||
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Unicode Release|x64'">Create</PrecompiledHeader>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="MSITSCA.h" />
|
||||||
|
<ClInclude Include="StdAfx.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceCompile Include="res\MSITSCA.rc" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceLocalizator Include="res\MSITSCA.rcx" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="res\en_GB.po" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
<Import Project="$(VCTargetsPath)\BuildCustomizations\rcxgettext.targets" />
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
48
MSICALib/MSITSCA.vcxproj.filters
Normal file
48
MSICALib/MSITSCA.vcxproj.filters
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;rcx;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;po</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="MSITSCA.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="StdAfx.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="MSITSCA.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="StdAfx.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceCompile Include="res\MSITSCA.rc">
|
||||||
|
<Filter>Resource Files</Filter>
|
||||||
|
</ResourceCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceLocalizator Include="res\MSITSCA.rcx">
|
||||||
|
<Filter>Resource Files</Filter>
|
||||||
|
</ResourceLocalizator>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="res\en_GB.po">
|
||||||
|
<Filter>Resource Files</Filter>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
1
MSICALib/StdAfx.cpp
Normal file
1
MSICALib/StdAfx.cpp
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include "StdAfx.h"
|
36
MSICALib/StdAfx.h
Normal file
36
MSICALib/StdAfx.h
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
// StdAfx.h : include file for standard system include files,
|
||||||
|
// or project specific include files that are used frequently,
|
||||||
|
// but are changed infrequently
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#if defined(_UNICODE) && !defined(UNICODE)
|
||||||
|
#define UNICODE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(_WIN32) && !defined(WIN32)
|
||||||
|
#define WIN32
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef STRICT
|
||||||
|
#define STRICT
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
|
||||||
|
#define _WIN32_WINNT 0x0501 // Include Windows XP symbols
|
||||||
|
#define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
|
||||||
|
#ifdef _WINDLL
|
||||||
|
#define MSITSCA_DLL // Gradimo knjižnico DLL
|
||||||
|
#endif
|
||||||
|
#define _ATL_APARTMENT_THREADED
|
||||||
|
#define _ATL_NO_AUTOMATIC_NAMESPACE
|
||||||
|
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // Some CString constructors will be explicit
|
||||||
|
|
||||||
|
#include <atlbase.h>
|
||||||
|
#include <atlstr.h>
|
||||||
|
|
||||||
|
using namespace ATL;
|
||||||
|
|
||||||
|
#include "BuildNum.h"
|
||||||
|
|
||||||
|
#include "MSITSCA.h"
|
BIN
MSICALib/res/MSITSCA.rc
Normal file
BIN
MSICALib/res/MSITSCA.rc
Normal file
Binary file not shown.
BIN
MSICALib/res/MSITSCA.rcx
Normal file
BIN
MSICALib/res/MSITSCA.rcx
Normal file
Binary file not shown.
67
MSICALib/res/en_GB.po
Normal file
67
MSICALib/res/en_GB.po
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: MSITSCA\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2012-11-29 10:54+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Simon Rozman <simon.rozman@amebis.si>\n"
|
||||||
|
"Language-Team: Amebis, d. o. o., Kamnik <simon.rozman@amebis.si>\n"
|
||||||
|
"Language: en\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: __\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"X-Generator: Poedit 1.5.4\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
# Koda jezika in privzeta kodna stran ANSI za ta jezik (šesnajstiško)
|
||||||
|
# Če ne prevajamo ločeno vsake lokalne različice jezika, uporabimo kodo privzetega podjezika.
|
||||||
|
# Na primer: LANGUAGE_ENGLISH + SUBLANGUAGE_DEFAULT = 0x409, čeprav 0x409 predstavlja (tudi) ameriško angleščino (SUBLANGUAGE_ENGLISH_US = SUBLANGUAGE_DEFAULT), sami pa uporabljamo britansko.
|
||||||
|
#: MSITSCA.rcx:46
|
||||||
|
msgid "042404e2"
|
||||||
|
msgstr "040904e4"
|
||||||
|
|
||||||
|
# Koda jezika (šesnajstiško)
|
||||||
|
# Če ne prevajamo ločeno vsake lokalne različice jezika, uporabimo kodo privzetega podjezika.
|
||||||
|
# Na primer: LANGUAGE_ENGLISH + SUBLANGUAGE_DEFAULT = 0x409, čeprav 0x409 predstavlja (tudi) ameriško angleščino (SUBLANGUAGE_ENGLISH_US = SUBLANGUAGE_DEFAULT), sami pa uporabljamo britansko.
|
||||||
|
#: MSITSCA.rcx:64
|
||||||
|
msgid "0x424"
|
||||||
|
msgstr "0x409"
|
||||||
|
|
||||||
|
# Privzeta kodna stran ANSI za ta jezik (desetiško)
|
||||||
|
#: MSITSCA.rcx:64
|
||||||
|
msgid "1250"
|
||||||
|
msgstr "1252"
|
||||||
|
|
||||||
|
# Ime konstante, s katero vklopimo vire v tem jeziku.
|
||||||
|
#: MSITSCA.rcx:45 MSITSCA.rcx:63 MSITSCA.rcx:79
|
||||||
|
msgid "AFX_TARG_SLV"
|
||||||
|
msgstr "AFX_TARG_ENU"
|
||||||
|
|
||||||
|
#: MSITSCA.rcx:48
|
||||||
|
msgid "Amebis, d. o. o., Kamnik"
|
||||||
|
msgstr "Amebis, d. o. o., Kamnik"
|
||||||
|
|
||||||
|
# Konstanta s kodo jezika
|
||||||
|
#: MSITSCA.rcx:81
|
||||||
|
msgid "LANG_SLOVENIAN"
|
||||||
|
msgstr "LANG_ENGLISH"
|
||||||
|
|
||||||
|
#: MSITSCA.rcx:51 MSITSCA.rcx:53
|
||||||
|
msgid "MSITSCA"
|
||||||
|
msgstr "MSITSCA"
|
||||||
|
|
||||||
|
#: MSITSCA.rcx:49
|
||||||
|
msgid "Podporna knjižnica za nameščanje načrtovanih opravil"
|
||||||
|
msgstr "Scheduled Task Installation Support Library"
|
||||||
|
|
||||||
|
# Konstanta s kodo lokalne različice jezika
|
||||||
|
#: MSITSCA.rcx:81
|
||||||
|
msgid "SUBLANG_DEFAULT"
|
||||||
|
msgstr "SUBLANG_DEFAULT"
|
||||||
|
|
||||||
|
#: MSITSCA.rcx:52
|
||||||
|
msgid "Vse pravice pridržane © Amebis, d. o. o., Kamnik, 2012"
|
||||||
|
msgstr "Copyright © Amebis, d. o. o., Kamnik, 2012"
|
Loading…
x
Reference in New Issue
Block a user