From ca9ed29613974218347a1229458be9b19472eef9 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:10 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/Bus.cpp | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 comIvy/Bus.cpp (limited to 'comIvy') diff --git a/comIvy/Bus.cpp b/comIvy/Bus.cpp new file mode 100644 index 0000000..cad7a36 --- /dev/null +++ b/comIvy/Bus.cpp @@ -0,0 +1,115 @@ +// Bus.cpp : implémentation de CBus + +#include "stdafx.h" +#include "Bus.h" +#include "Ivy.h" +#include "IvyApplication.h" +#include "Expression.h" + + +char * ConvBSTR( BSTR str ) +{ + char* convstr; + int len = SysStringLen( str ); + convstr = new char[len+1] ; + int bytes = WideCharToMultiByte(CP_ACP, 0, str, len, convstr, len, NULL,NULL); + convstr[bytes] = '\0'; + if (!bytes) ATLTRACE( "ConvBSR error %d", GetLastError()); + return convstr; +} +BSTR ConvCSTR( const char *str ) +{ + BSTR convstr; + int len = (int)strlen( str )+1; + convstr = SysAllocStringLen( NULL, len); + int bytes = MultiByteToWideChar(CP_ACP, 0, str, len, convstr, len); + if (!bytes) ATLTRACE( "ConvCSTR error %d", GetLastError()); + return convstr; +} + +// CBus +CBus::CBus() +: bus(NULL) +{ + ATLTRACE("CBus created\n"); +} +CBus::~CBus() +{ + delete bus; + bus = NULL; + ATLTRACE("CBus destroyed\n"); +} + +STDMETHODIMP CBus::Start(BSTR domain) +{ + char *strdomain = NULL; + if ( !bus ) return E_FAIL; + if ( SysStringLen( domain ) ) + strdomain= ConvBSTR(domain); + if ( bus ) bus->start(strdomain); + delete strdomain; + return S_OK; +} + +STDMETHODIMP CBus::Stop(void) +{ + if ( !bus ) return E_FAIL; + bus->stop(); + return S_OK; +} + +STDMETHODIMP CBus::Create(BSTR appName, BSTR readyMsg) +{ + char *strname= ConvBSTR(appName); + char *strready= ConvBSTR(readyMsg); + bus = new Ivy(strname,strready,this); + delete strname; + delete strready; + return S_OK; +} + +STDMETHODIMP CBus::Delete(void) +{ + if ( !bus ) return E_FAIL; + bus->stop(); + delete bus; + bus = NULL; + return S_OK; +} + +STDMETHODIMP CBus::Send(BSTR message, SHORT* count) +{ + if ( !bus ) return E_FAIL; + char *strmessage= ConvBSTR(message); + *count = bus->SendMsg( strmessage ); + delete strmessage; + return S_OK; +} + +STDMETHODIMP CBus::Bind(BSTR regexp, IExpression** binding) +{ + if ( !bus ) return E_FAIL; + char* regexpstr = ConvBSTR(regexp); + *binding = NULL; + // Note that at this point the ref count for the object is 0. + HRESULT hRes = CExpression::CreateInstance(binding); + if ( hRes != S_OK ) return hRes; + CExpression* bind = (CExpression*)*binding; + this->AddRef(); + bind->bus = this; + bind->id = bus->BindMsg( regexpstr, bind ); + delete regexpstr; + return hRes; +} + +void CBus::OnApplicationConnected(IvyApplication * app) +{ + BSTR appname = ConvCSTR( app->GetName() ); + ApplicationConnected(appname); +} + +void CBus::OnApplicationDisconnected(IvyApplication * app) +{ + BSTR appname = ConvCSTR( app->GetName() ); + ApplicationDisconnected(appname); +} -- cgit v1.1 From 4e4c7697a33094f360e29ba203f116242b63896e Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:11 +0000 Subject: Utilisateur : Fcolin Date : 18/04/03 Heure : 15:43 Archivé dans $/Bus/comIvy Commentaire: ajout GetDomain (vss 2) --- comIvy/Bus.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'comIvy') diff --git a/comIvy/Bus.cpp b/comIvy/Bus.cpp index cad7a36..393406a 100644 --- a/comIvy/Bus.cpp +++ b/comIvy/Bus.cpp @@ -113,3 +113,10 @@ void CBus::OnApplicationDisconnected(IvyApplication * app) BSTR appname = ConvCSTR( app->GetName() ); ApplicationDisconnected(appname); } + +STDMETHODIMP CBus::GetDomain(BSTR* domain) +{ + *domain = ConvCSTR( bus->GetDomain(NULL) ); + + return S_OK; +} -- cgit v1.1 From ab15cfce0b453acf070c6c3715036017971dd524 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:13 +0000 Subject: Utilisateur : Fcolin Date : 7/06/04 Heure : 10:56 Archivé dans $/Bus/comIvy Commentaire: (vss 3) --- comIvy/Bus.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'comIvy') diff --git a/comIvy/Bus.cpp b/comIvy/Bus.cpp index 393406a..66f2f2c 100644 --- a/comIvy/Bus.cpp +++ b/comIvy/Bus.cpp @@ -95,9 +95,7 @@ STDMETHODIMP CBus::Bind(BSTR regexp, IExpression** binding) HRESULT hRes = CExpression::CreateInstance(binding); if ( hRes != S_OK ) return hRes; CExpression* bind = (CExpression*)*binding; - this->AddRef(); - bind->bus = this; - bind->id = bus->BindMsg( regexpstr, bind ); + bind->Bind( regexpstr, this ); delete regexpstr; return hRes; } -- cgit v1.1 From 87713194748f6eb399f2ba2d6cb72db9ddb5e1a5 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:15 +0000 Subject: Utilisateur : Fcolin Date : 4/01/05 Heure : 14:48 Archivé dans $/Bus/comIvy Commentaire: (vss 4) --- comIvy/Bus.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'comIvy') diff --git a/comIvy/Bus.cpp b/comIvy/Bus.cpp index 66f2f2c..355661f 100644 --- a/comIvy/Bus.cpp +++ b/comIvy/Bus.cpp @@ -35,7 +35,11 @@ CBus::CBus() } CBus::~CBus() { - delete bus; + if ( bus ) + { + bus->stop(); + delete bus; + } bus = NULL; ATLTRACE("CBus destroyed\n"); } @@ -46,7 +50,7 @@ STDMETHODIMP CBus::Start(BSTR domain) if ( !bus ) return E_FAIL; if ( SysStringLen( domain ) ) strdomain= ConvBSTR(domain); - if ( bus ) bus->start(strdomain); + bus->start(strdomain); delete strdomain; return S_OK; } -- cgit v1.1 From d561f6f0278d0bf9be491efa47ea681d55ed3ee1 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:18 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/Bus.h | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 comIvy/Bus.h (limited to 'comIvy') diff --git a/comIvy/Bus.h b/comIvy/Bus.h new file mode 100644 index 0000000..cc5e096 --- /dev/null +++ b/comIvy/Bus.h @@ -0,0 +1,87 @@ +// Bus.h : déclaration de CBus + +#pragma once +#include "resource.h" // symboles principaux + +#include "Ivy.h" +#include "Expression.h" + +// IBus +[ + object, + uuid("D694594D-D119-443B-B3CB-58F6859CE990"), + dual, helpstring("Interface IBus"), + pointer_default(unique) +] +__interface IBus : IDispatch +{ + [id(1), helpstring("method Start")] HRESULT Start([in] BSTR domain); + [id(2), helpstring("method Stop")] HRESULT Stop(void); + [id(3), helpstring("method Create")] HRESULT Create([in] BSTR appName, [in] BSTR readyMsg); + [id(4), helpstring("method Delete")] HRESULT Delete(void); + [id(5), helpstring("method Send")] HRESULT Send([in] BSTR message, [out,retval] SHORT* count); + [id(6), helpstring("method Bind")] HRESULT Bind([in] BSTR regexp, [out,retval] IExpression** binding); +}; + + +// _IBusEvents +[ + dispinterface, + uuid("59377CC5-59FD-480F-B761-644C40190920"), + helpstring("Interface _IBusEvents") +] +__interface _IBusEvents +{ + [id(1), helpstring("method ApplicationConnected")] void ApplicationConnected([in] BSTR applicationName); + [id(2), helpstring("method ApplicationDisconnected")] void ApplicationDisconnected([in] BSTR applicationName); +}; + + +// CBus + +[ + coclass, + threading("apartment"), + event_source("com"), + vi_progid("comIvy.Bus"), + progid("comIvy.Bus.1"), + version(1.0), + uuid("537805F0-1950-40B6-9833-DD5F8E8A19B7"), + helpstring("Bus Class") +] +class ATL_NO_VTABLE CBus : + public IBus, + public IvyApplicationCallback +{ +public: + CBus(); + ~CBus(); + friend class CExpression; + + __event __interface _IBusEvents; + + DECLARE_PROTECT_FINAL_CONSTRUCT() + + HRESULT FinalConstruct() + { + return S_OK; + } + + void FinalRelease() + { + } + +public: + + STDMETHOD(Start)(BSTR domain); + STDMETHOD(Stop)(void); + STDMETHOD(Create)(BSTR appname, BSTR readyMsg); + STDMETHOD(Delete)(void); + STDMETHOD(Send)(BSTR message, SHORT* count); + STDMETHOD(Bind)(BSTR regexp, IExpression** binding); +protected: + Ivy* bus; + void OnApplicationConnected(IvyApplication * app); + void OnApplicationDisconnected(IvyApplication * app); +}; + -- cgit v1.1 From 8bb2578cce0bf473a91f33e661a17015758ca7f4 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:20 +0000 Subject: Utilisateur : Fcolin Date : 18/04/03 Heure : 15:43 Archivé dans $/Bus/comIvy Commentaire: ajout GetDomain (vss 2) --- comIvy/Bus.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'comIvy') diff --git a/comIvy/Bus.h b/comIvy/Bus.h index cc5e096..9494cb1 100644 --- a/comIvy/Bus.h +++ b/comIvy/Bus.h @@ -21,6 +21,7 @@ __interface IBus : IDispatch [id(4), helpstring("method Delete")] HRESULT Delete(void); [id(5), helpstring("method Send")] HRESULT Send([in] BSTR message, [out,retval] SHORT* count); [id(6), helpstring("method Bind")] HRESULT Bind([in] BSTR regexp, [out,retval] IExpression** binding); + [id(7), helpstring("method GetDomain")] HRESULT GetDomain([out,retval] BSTR* domain); }; @@ -44,8 +45,8 @@ __interface _IBusEvents threading("apartment"), event_source("com"), vi_progid("comIvy.Bus"), - progid("comIvy.Bus.1"), - version(1.0), + progid("comIvy.Bus"), + version(2.0), uuid("537805F0-1950-40B6-9833-DD5F8E8A19B7"), helpstring("Bus Class") ] @@ -83,5 +84,7 @@ protected: Ivy* bus; void OnApplicationConnected(IvyApplication * app); void OnApplicationDisconnected(IvyApplication * app); +public: + STDMETHOD(GetDomain)(BSTR* domain); }; -- cgit v1.1 From 7bf5378bec2ed162969b82f53b1cd6611842ef0a Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:22 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/Expression.cpp | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 comIvy/Expression.cpp (limited to 'comIvy') diff --git a/comIvy/Expression.cpp b/comIvy/Expression.cpp new file mode 100644 index 0000000..468a431 --- /dev/null +++ b/comIvy/Expression.cpp @@ -0,0 +1,65 @@ +// Expression.cpp : implémentation de CExpression + +#include "stdafx.h" +#include "Bus.h" +#include "Ivy.h" +#include "IvyApplication.h" + +#include "Expression.h" + + +char * ConvBSTR( BSTR str ); +BSTR ConvCSTR( const char *str ); + +// CExpression + + +STDMETHODIMP CExpression::Unbind(void) +{ + if ( !bus ) return E_FAIL; + if ( bus->bus ) + bus->bus->UnbindMsg( id ); + bus->Release(); + return S_OK; +} + +void CExpression::OnMessage(IvyApplication * app, int argc, const char ** argv) +{ + BSTR appname = ConvCSTR( app->GetName() ); + SAFEARRAY *pArrayVal = NULL; + HRESULT hr = S_OK; + + //Create the safe array for the arguments string. + pArrayVal = SafeArrayCreateVector( VT_VARIANT, 0, argc ); + + if (!(pArrayVal == NULL) ) + { + // Set the values for each element of the array + for( long i = 0 ; i < argc && SUCCEEDED( hr );i++) + { + hr = SafeArrayPutElement(pArrayVal, &i, new CComVariant(ConvCSTR(argv[i]))); + } + + } + VARIANT args; + args.vt = VT_ARRAY | VT_VARIANT; + args.parray = pArrayVal; + + Received( appname, args ); + + SafeArrayDestroy(pArrayVal); +} +// CExpression +CExpression::CExpression() +{ + id = -1; + bus = 0; + ATLTRACE("CExpression created\n"); +} +CExpression::~CExpression() +{ + Unbind(); + id = -1; + bus = 0; + ATLTRACE("CExpression destroyed\n"); +} -- cgit v1.1 From ee1d4ac1c341aa9cdecbab89933c0658228d38c4 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:23 +0000 Subject: Utilisateur : Fcolin Date : 18/04/03 Heure : 15:43 Archivé dans $/Bus/comIvy Commentaire: ajout GetDomain (vss 2) --- comIvy/Expression.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'comIvy') diff --git a/comIvy/Expression.cpp b/comIvy/Expression.cpp index 468a431..9a856a7 100644 --- a/comIvy/Expression.cpp +++ b/comIvy/Expression.cpp @@ -28,7 +28,7 @@ void CExpression::OnMessage(IvyApplication * app, int argc, const char ** argv) BSTR appname = ConvCSTR( app->GetName() ); SAFEARRAY *pArrayVal = NULL; HRESULT hr = S_OK; - + // pour assurer la compatibilite avec VBSCript pouah horreur //Create the safe array for the arguments string. pArrayVal = SafeArrayCreateVector( VT_VARIANT, 0, argc ); @@ -43,12 +43,13 @@ void CExpression::OnMessage(IvyApplication * app, int argc, const char ** argv) } VARIANT args; args.vt = VT_ARRAY | VT_VARIANT; - args.parray = pArrayVal; + V_ARRAY(&args) = pArrayVal; Received( appname, args ); SafeArrayDestroy(pArrayVal); } + // CExpression CExpression::CExpression() { -- cgit v1.1 From ef9c20abbfe852cc90c7bbd17c04549f7de3dad3 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:25 +0000 Subject: Utilisateur : Fcolin Date : 7/06/04 Heure : 10:56 Archivé dans $/Bus/comIvy Commentaire: (vss 3) --- comIvy/Expression.cpp | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) (limited to 'comIvy') diff --git a/comIvy/Expression.cpp b/comIvy/Expression.cpp index 9a856a7..9287bae 100644 --- a/comIvy/Expression.cpp +++ b/comIvy/Expression.cpp @@ -12,13 +12,28 @@ char * ConvBSTR( BSTR str ); BSTR ConvCSTR( const char *str ); // CExpression - +STDMETHODIMP CExpression::Bind(char* regex, CBus* _bus) +{ + if ( !_bus ) return E_FAIL; + bus = _bus; + bus->AddRef(); + if ( id != -1 ) + return E_FAIL; + if ( bus->bus ) + id = bus->bus->BindMsg( regex, this ); + else return E_FAIL; + return S_OK; +} STDMETHODIMP CExpression::Unbind(void) { if ( !bus ) return E_FAIL; - if ( bus->bus ) + if ( bus->bus && id != -1 ) + { bus->bus->UnbindMsg( id ); + id = -1; + } + else return E_FAIL; bus->Release(); return S_OK; } @@ -59,7 +74,8 @@ CExpression::CExpression() } CExpression::~CExpression() { - Unbind(); + if ( id != -1 ) + Unbind(); id = -1; bus = 0; ATLTRACE("CExpression destroyed\n"); -- cgit v1.1 From 848b4765d50f5b8bd2cf950a99f2f191785597fd Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:28 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/Expression.h | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 comIvy/Expression.h (limited to 'comIvy') diff --git a/comIvy/Expression.h b/comIvy/Expression.h new file mode 100644 index 0000000..e60bbd2 --- /dev/null +++ b/comIvy/Expression.h @@ -0,0 +1,77 @@ +// Expression.h : déclaration de CExpression + +#pragma once +#include "resource.h" // symboles principaux + +#include "Ivy.h" +#include "IvyCallback.h" + +// IExpression +[ + object, + uuid("65B2CF08-0B15-4752-AEEA-655157A87367"), + dual, helpstring("Interface IExpression"), + pointer_default(unique) +] +__interface IExpression : IDispatch +{ + [id(1), helpstring("method Unbind")] HRESULT Unbind(void); +}; + + +// _IExpressionEvents +[ + dispinterface, + uuid("74C250EC-2393-452D-9CC4-042313AB7268"), + helpstring("Interface _IExpressionEvents") +] +__interface _IExpressionEvents +{ + [id(1), helpstring("method Received")] void Received([in] BSTR applicationName, [in] VARIANT arguments); +}; + + +// CExpression + +[ + coclass, + threading("apartment"), + event_source("com"), + vi_progid("comIvy.Expression"), + progid("comIvy.Expression.1"), + version(1.0), + uuid("FAD2AFA6-44F7-430A-9344-F20C804DA97B"), + helpstring("Expression Class") +] +class ATL_NO_VTABLE CExpression : + public IExpression, + public IvyMessageCallback +{ +public: + CExpression(); + ~CExpression(); + + __event __interface _IExpressionEvents; + + DECLARE_PROTECT_FINAL_CONSTRUCT() + + HRESULT FinalConstruct() + { + return S_OK; + } + + void FinalRelease() + { + } + +public: + + STDMETHOD(Unbind)(void); + friend class CBus; + +protected: + CBus* bus; + int id; + virtual void OnMessage(IvyApplication * app, int argc, const char ** argv); +}; + -- cgit v1.1 From b55995ae646cfe7bab91267ff3631a0cdafb2c26 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:29 +0000 Subject: Utilisateur : Fcolin Date : 18/04/03 Heure : 15:43 Archivé dans $/Bus/comIvy Commentaire: ajout GetDomain (vss 2) --- comIvy/Expression.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'comIvy') diff --git a/comIvy/Expression.h b/comIvy/Expression.h index e60bbd2..70a5857 100644 --- a/comIvy/Expression.h +++ b/comIvy/Expression.h @@ -39,7 +39,7 @@ __interface _IExpressionEvents event_source("com"), vi_progid("comIvy.Expression"), progid("comIvy.Expression.1"), - version(1.0), + version(2.0), uuid("FAD2AFA6-44F7-430A-9344-F20C804DA97B"), helpstring("Expression Class") ] -- cgit v1.1 From 513b5a4860d54f00937d950196b824c05d66cff6 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:31 +0000 Subject: Utilisateur : Fcolin Date : 7/06/04 Heure : 10:56 Archivé dans $/Bus/comIvy Commentaire: (vss 3) --- comIvy/Expression.h | 1 + 1 file changed, 1 insertion(+) (limited to 'comIvy') diff --git a/comIvy/Expression.h b/comIvy/Expression.h index 70a5857..454973f 100644 --- a/comIvy/Expression.h +++ b/comIvy/Expression.h @@ -73,5 +73,6 @@ protected: CBus* bus; int id; virtual void OnMessage(IvyApplication * app, int argc, const char ** argv); + STDMETHOD(Bind)(char* regex, CBus* bus ); }; -- cgit v1.1 From 5cc38f7f2fef2c690b4877da81959a21044e0f30 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:39 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 16:50 Créé Commentaire: (vss 1) --- comIvy/InstComIvy/InstComIvy.sln | 67 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 comIvy/InstComIvy/InstComIvy.sln (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.sln b/comIvy/InstComIvy/InstComIvy.sln new file mode 100644 index 0000000..05139ff --- /dev/null +++ b/comIvy/InstComIvy/InstComIvy.sln @@ -0,0 +1,67 @@ +Microsoft Visual Studio Solution File, Format Version 7.00 +Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "InstComIvy", "InstComIvy.vdproj", "{9BCEC8AD-653B-4EBE-B804-786C3C5E568F}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "comIvy", "..\..\C++\Bus\comIvy\comIvy.vcproj", "{2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}" +EndProject +Global + GlobalSection(SourceCodeControl) = preSolution + SccNumberOfProjects = 2 + SccProjectUniqueName0 = InstComIvy.vdproj + SccProjectName0 = \u0022$/Bus/Install/InstComIvy\u0022,\u0020BREAAAAA + SccLocalPath0 = . + SccProvider0 = MSSCCI:Microsoft\u0020Visual\u0020SourceSafe + CanCheckoutShared = false + SccProjectUniqueName1 = ..\\..\\C++\\Bus\\comIvy\\comIvy.vcproj + SccProjectName1 = \u0022$/Bus\u0022,\u0020ZOBAAAAA + SccLocalPath1 = ..\\..\\C++\\Bus + SccProvider1 = MSSCCI:Microsoft\u0020Visual\u0020SourceSafe + CanCheckoutShared = false + SccProjectFilePathRelativizedFromConnection1 = comIvy\\ + EndGlobalSection + GlobalSection(SolutionConfiguration) = preSolution + ConfigName.0 = Debug + ConfigName.1 = Release + ConfigName.2 = Release MinDependency + ConfigName.3 = Release MinSize + ConfigName.4 = Unicode Debug + ConfigName.5 = Unicode Release MinDependency + ConfigName.6 = Unicode Release MinSize + EndGlobalSection + GlobalSection(ProjectDependencies) = postSolution + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.0 = {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA} + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Debug.ActiveCfg = Debug + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Debug.Build.0 = Debug + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release.ActiveCfg = Release + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release.Build.0 = Release + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release MinDependency.ActiveCfg = Release + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release MinDependency.Build.0 = Release + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release MinSize.ActiveCfg = Release + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release MinSize.Build.0 = Release + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Debug.ActiveCfg = Debug + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Debug.Build.0 = Debug + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Release MinDependency.ActiveCfg = Release + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Release MinDependency.Build.0 = Release + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Release MinSize.ActiveCfg = Release + {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Release MinSize.Build.0 = Release + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Debug.ActiveCfg = Debug|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Debug.Build.0 = Debug|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Release.ActiveCfg = Release MinSize|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Release.Build.0 = Release MinSize|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Release MinDependency.ActiveCfg = Release MinDependency|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Release MinDependency.Build.0 = Release MinDependency|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Release MinSize.ActiveCfg = Release MinSize|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Release MinSize.Build.0 = Release MinSize|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Unicode Debug.ActiveCfg = Unicode Debug|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Unicode Debug.Build.0 = Unicode Debug|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Unicode Release MinDependency.ActiveCfg = Unicode Release MinDependency|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Unicode Release MinDependency.Build.0 = Unicode Release MinDependency|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Unicode Release MinSize.ActiveCfg = Unicode Release MinSize|Win32 + {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Unicode Release MinSize.Build.0 = Unicode Release MinSize|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal -- cgit v1.1 From 33aeb30f57a0b34b4faa40f39684488f41897ef6 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:40 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 17:32 Archivé dans $/Bus/Install/InstComIvy Commentaire: (vss 2) --- comIvy/InstComIvy/InstComIvy.sln | 41 ++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.sln b/comIvy/InstComIvy/InstComIvy.sln index 05139ff..c87ea45 100644 --- a/comIvy/InstComIvy/InstComIvy.sln +++ b/comIvy/InstComIvy/InstComIvy.sln @@ -1,22 +1,24 @@ Microsoft Visual Studio Solution File, Format Version 7.00 -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "InstComIvy", "InstComIvy.vdproj", "{9BCEC8AD-653B-4EBE-B804-786C3C5E568F}" -EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "comIvy", "..\..\C++\Bus\comIvy\comIvy.vcproj", "{2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}" EndProject +Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "InstComIvy", "InstComIvy.vdproj", "{077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}" +EndProject Global GlobalSection(SourceCodeControl) = preSolution - SccNumberOfProjects = 2 - SccProjectUniqueName0 = InstComIvy.vdproj + SccNumberOfProjects = 3 SccProjectName0 = \u0022$/Bus/Install/InstComIvy\u0022,\u0020BREAAAAA SccLocalPath0 = . SccProvider0 = MSSCCI:Microsoft\u0020Visual\u0020SourceSafe CanCheckoutShared = false + SolutionUniqueID = {8C967BA3-FE3C-4272-948A-B6EA96628D5C} SccProjectUniqueName1 = ..\\..\\C++\\Bus\\comIvy\\comIvy.vcproj SccProjectName1 = \u0022$/Bus\u0022,\u0020ZOBAAAAA SccLocalPath1 = ..\\..\\C++\\Bus - SccProvider1 = MSSCCI:Microsoft\u0020Visual\u0020SourceSafe CanCheckoutShared = false SccProjectFilePathRelativizedFromConnection1 = comIvy\\ + SccProjectUniqueName2 = InstComIvy.vdproj + SccLocalPath2 = . + CanCheckoutShared = false EndGlobalSection GlobalSection(SolutionConfiguration) = preSolution ConfigName.0 = Debug @@ -28,23 +30,8 @@ Global ConfigName.6 = Unicode Release MinSize EndGlobalSection GlobalSection(ProjectDependencies) = postSolution - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.0 = {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA} EndGlobalSection GlobalSection(ProjectConfiguration) = postSolution - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Debug.ActiveCfg = Debug - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Debug.Build.0 = Debug - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release.ActiveCfg = Release - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release.Build.0 = Release - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release MinDependency.ActiveCfg = Release - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release MinDependency.Build.0 = Release - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release MinSize.ActiveCfg = Release - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Release MinSize.Build.0 = Release - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Debug.ActiveCfg = Debug - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Debug.Build.0 = Debug - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Release MinDependency.ActiveCfg = Release - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Release MinDependency.Build.0 = Release - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Release MinSize.ActiveCfg = Release - {9BCEC8AD-653B-4EBE-B804-786C3C5E568F}.Unicode Release MinSize.Build.0 = Release {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Debug.ActiveCfg = Debug|Win32 {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Debug.Build.0 = Debug|Win32 {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Release.ActiveCfg = Release MinSize|Win32 @@ -59,6 +46,20 @@ Global {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Unicode Release MinDependency.Build.0 = Unicode Release MinDependency|Win32 {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Unicode Release MinSize.ActiveCfg = Unicode Release MinSize|Win32 {2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}.Unicode Release MinSize.Build.0 = Unicode Release MinSize|Win32 + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Debug.ActiveCfg = Debug + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Debug.Build.0 = Debug + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Release.ActiveCfg = Release + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Release.Build.0 = Release + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Release MinDependency.ActiveCfg = Release + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Release MinDependency.Build.0 = Release + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Release MinSize.ActiveCfg = Release + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Release MinSize.Build.0 = Release + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Unicode Debug.ActiveCfg = Debug + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Unicode Debug.Build.0 = Debug + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Unicode Release MinDependency.ActiveCfg = Release + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Unicode Release MinDependency.Build.0 = Release + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Unicode Release MinSize.ActiveCfg = Release + {077763E1-0E7B-4F44-B0B4-EB0EC1504AFC}.Unicode Release MinSize.Build.0 = Release EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution EndGlobalSection -- cgit v1.1 From 6513e14b23b2ec09ee704c2c3802f7d64cb0a098 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:43 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:54 Créé Commentaire: (vss 1) --- comIvy/InstComIvy/InstComIvy.vdproj | 785 ++++++++++++++++++++++++++++++++++++ 1 file changed, 785 insertions(+) create mode 100644 comIvy/InstComIvy/InstComIvy.vdproj (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.vdproj b/comIvy/InstComIvy/InstComIvy.vdproj new file mode 100644 index 0000000..8adb62c --- /dev/null +++ b/comIvy/InstComIvy/InstComIvy.vdproj @@ -0,0 +1,785 @@ +"DeployProject" +{ +"VSVersion" = "3:700" +"ProjectType" = "8:{5443560c-dbb4-11d2-8724-00a0c9a8b90c}" +"IsWebType" = "8:FALSE" +"ProjectName" = "8:InstComIvy" +"LanguageId" = "3:1036" +"CodePage" = "3:1252" +"UILanguageId" = "3:1036" +"SccProjectName" = "8:\"$/fcolin\", SPEAAAAA" +"SccLocalPath" = "8:..\\.." +"SccAuxPath" = "8:" +"SccProvider" = "8:MSSCCI:Microsoft Visual SourceSafe" + "Hierarchy" + { + "Entry" + { + "MsmKey" = "8:_496F71070518435CA55F8BD287A5DFB5" + "OwnerKey" = "8:_4FAF64717A4842019B6A91459E7E6F2A" + "MsmSig" = "8:VC_User_STL.BA9B76E9_0DE0_11D5_A548_0090278A1BB8" + } + "Entry" + { + "MsmKey" = "8:_4FAF64717A4842019B6A91459E7E6F2A" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:MergeModule.50212549D8E242BBB1C9246BFDAFADB2" + } + "Entry" + { + "MsmKey" = "8:_7D1B6F9A93714234B73B686AC36F6FFC" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:C:\\USERS\\FCOLIN\\C++\\BUS\\COMIVY\\DEBUG\\COMIVY.DLL" + } + "Entry" + { + "MsmKey" = "8:_CAC737F2898946949D47338ACD32122F" + "OwnerKey" = "8:_4FAF64717A4842019B6A91459E7E6F2A" + "MsmSig" = "8:VC_User_CRT.BA9B6D09_0DE0_11D5_A548_0090278A1BB8" + } + } + "Configurations" + { + "Debug" + { + "DisplayName" = "8:Debug" + "IsDebugOnly" = "11:TRUE" + "IsReleaseOnly" = "11:FALSE" + "OutputFilename" = "8:Debug\\InstComIvy.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:1" + } + "Release" + { + "DisplayName" = "8:Release" + "IsDebugOnly" = "11:FALSE" + "IsReleaseOnly" = "11:TRUE" + "OutputFilename" = "8:Release\\InstComIvy.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + } + } + "Deployable" + { + "CustomAction" + { + } + "DefaultFeature" + { + "Name" = "8:DefaultFeature" + "Title" = "8:" + "Description" = "8:" + } + "Feature" + { + } + "File" + { + } + "FileType" + { + } + "Folder" + { + "{EE62640D-12F2-11D3-8D6C-00A0C9CFCEE6}:_4A020A91D793427C9F8AC28A4383C66D" + { + "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" + "Name" = "8:#1925" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:TARGETDIR" + "Folders" + { + } + } + "{777C097F-0ED8-11D3-8D6C-00A0C9CFCEE6}:_7D7E3CB3F86A42B3B3329BBD1CE04868" + { + "Name" = "8:#1919" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:ProgramMenuFolder" + "Folders" + { + } + } + "{777C097F-0ED8-11D3-8D6C-00A0C9CFCEE6}:_AC61AE0B941E4CD38DF1BACE585642DF" + { + "Name" = "8:#1916" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:DesktopFolder" + "Folders" + { + } + } + } + "LaunchCondition" + { + } + "Locator" + { + } + "Shortcut" + { + } + "Sequences" + { + } + "Registry" + { + "HKLM" + { + "Keys" + { + "{7DF0CD0A-FF27-11D2-8D6B-00A0C9CFCEE6}:_2FDB08C375C6438FAE11F0738723CB2E" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{7DF0CD0A-FF27-11D2-8D6B-00A0C9CFCEE6}:_13AAE11CAFAC4AB5A4C243704796602D" + { + "Name" = "8:[Manufacturer]" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + } + "Values" + { + } + } + } + "Values" + { + } + } + } + } + "HKCU" + { + "Keys" + { + "{7DF0CD0A-FF27-11D2-8D6B-00A0C9CFCEE6}:_75218A37922A4FDC92FDE12416943003" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{7DF0CD0A-FF27-11D2-8D6B-00A0C9CFCEE6}:_AA4D0D6AAF5B43018DC02B4B152AB69C" + { + "Name" = "8:[Manufacturer]" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + } + "Values" + { + } + } + } + "Values" + { + } + } + } + } + "HKCR" + { + "Keys" + { + } + } + "HKU" + { + "Keys" + { + } + } + "HKPU" + { + "Keys" + { + } + } + } + "ProjectOutput" + { + "{B1E2BB22-187D-11D3-8E02-00C04F6837D0}:_7D1B6F9A93714234B73B686AC36F6FFC" + { + "SourcePath" = "8:..\\..\\C++\\Bus\\comIvy\\Debug\\comIvy.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_4A020A91D793427C9F8AC28A4383C66D" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + "ProjectOutputGroupRegister" = "3:2" + "OutputConfiguration" = "8:" + "OutputGroupCanonicalName" = "8:Built" + "OutputProjectCanonicalName" = "8:..\\..\\C++\\Bus\\comIvy\\comIvy.vcproj" + "OutputProjectGuid" = "8:{2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}" + "ShowKeyOutput" = "11:TRUE" + "ExcludeFilters" + { + } + } + "{B1E2BB22-187D-11D3-8E02-00C04F6837D0}:_96502D96945844C4BFAA86A3F1CFAE88" + { + "SourcePath" = "8:" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_4A020A91D793427C9F8AC28A4383C66D" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + "ProjectOutputGroupRegister" = "3:1" + "OutputConfiguration" = "8:" + "OutputGroupCanonicalName" = "8:ContentFiles" + "OutputProjectCanonicalName" = "8:..\\..\\C++\\Bus\\comIvy\\comIvy.vcproj" + "OutputProjectGuid" = "8:{2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}" + "ShowKeyOutput" = "11:TRUE" + "ExcludeFilters" + { + } + } + } + "Product" + { + "Name" = "8:Microsoft Visual Studio" + "ProductName" = "8:ComIvy" + "ProductCode" = "8:{98F05275-9FE2-4613-81CD-EEF6C529F63E}" + "PackageCode" = "8:{405F0CC9-45E0-4B05-92F8-149241535681}" + "UpgradeCode" = "8:{1CC5F500-0E3C-401C-B711-3779A4175563}" + "RestartWWWService" = "11:FALSE" + "RemovePreviousVersions" = "11:TRUE" + "DetectNewerInstalledVersion" = "11:TRUE" + "ProductVersion" = "8:1.0.0" + "Manufacturer" = "8:CENA" + "ARPHELPTELEPHONE" = "8:" + "ARPHELPLINK" = "8:" + "Title" = "8:ComIvy" + "Subject" = "8:" + "ARPCONTACT" = "8:CENA" + "Keywords" = "8:ivy" + "ARPCOMMENTS" = "8:" + "ARPURLINFOABOUT" = "8:" + "ARPPRODUCTICON" = "8:" + "ARPIconIndex" = "3:0" + "SearchPath" = "8:" + "UseSystemSearchPath" = "11:TRUE" + } + "MsiBootstrapper" + { + "LangId" = "3:1036" + } + "MergeModule" + { + "{AC8774A4-3E09-11D3-8E14-00C04F6837D0}:_496F71070518435CA55F8BD287A5DFB5" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:TRUE" + "SourcePath" = "8:vc_stl.msm" + "ModuleSignature" = "8:VC_User_STL.BA9B76E9_0DE0_11D5_A548_0090278A1BB8" + "Properties" + { + "DIR_RETARGET_TARGETDIR" + { + "Name" = "8:DIR_RETARGET_TARGETDIR" + "DisplayName" = "8:Module Retargetable Folder" + "Description" = "8:" + "Type" = "3:10" + "ContextData" = "8:IsolationDir" + "Attributes" = "3:6" + "Setting" = "3:1" + "UsePlugInResources" = "11:FALSE" + } + } + "LanguageId" = "3:0" + "Exclude" = "11:FALSE" + "Folder" = "8:" + "Feature" = "8:" + "IsolateTo" = "8:" + } + "{AC8774A4-3E09-11D3-8E14-00C04F6837D0}:_4FAF64717A4842019B6A91459E7E6F2A" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:..\\InstIvy\\Debug\\InstIvy.msm" + "ModuleSignature" = "8:MergeModule.50212549D8E242BBB1C9246BFDAFADB2" + "Properties" + { + "_7BEBD1D67A934D228BFBAE7C11467C9A.50212549D8E242BBB1C9246BFDAFADB2" + { + "Name" = "8:_7BEBD1D67A934D228BFBAE7C11467C9A.50212549D8E242BBB1C9246BFDAFADB2" + "DisplayName" = "8:Dossier Remplacement pour les modules" + "Description" = "8:" + "Type" = "3:32769" + "ContextData" = "8:_RetargetableFolder" + "Attributes" = "3:6" + "Setting" = "3:1" + "UsePlugInResources" = "11:FALSE" + } + } + "LanguageId" = "3:1036" + "Exclude" = "11:FALSE" + "Folder" = "8:" + "Feature" = "8:" + "IsolateTo" = "8:" + } + "{AC8774A4-3E09-11D3-8E14-00C04F6837D0}:_CAC737F2898946949D47338ACD32122F" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:TRUE" + "SourcePath" = "8:vc_crt.msm" + "ModuleSignature" = "8:VC_User_CRT.BA9B6D09_0DE0_11D5_A548_0090278A1BB8" + "Properties" + { + "DIR_RETARGET_TARGETDIR" + { + "Name" = "8:DIR_RETARGET_TARGETDIR" + "DisplayName" = "8:Module Retargetable Folder" + "Description" = "8:" + "Type" = "3:10" + "ContextData" = "8:IsolationDir" + "Attributes" = "3:6" + "Setting" = "3:1" + "UsePlugInResources" = "11:FALSE" + } + } + "LanguageId" = "3:0" + "Exclude" = "11:FALSE" + "Folder" = "8:" + "Feature" = "8:" + "IsolateTo" = "8:" + } + } + "UserInterface" + { + "{7DFFC192-4ABE-11D3-8D78-00A0C9CFCEE6}:_0AF82025022F4FE2A8F1E3A673758673" + { + "Name" = "8:#1901" + "Sequence" = "3:2" + "Attributes" = "3:2" + "Dialogs" + { + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_FD4410F630FA43FC8AA03D3D7594B41D" + { + "Sequence" = "3:100" + "DisplayName" = "8:Progression" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminProgressDlg.wid" + "ModuleSignature" = "8:VsdDialogs.EE9A1AFA_41DD_4514_B727_DF0ACA1D7389" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "ShowProgress" + { + "Name" = "8:ShowProgress" + "DisplayName" = "8:#1009" + "Description" = "8:#1109" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{E4ECAB26-4AB7-11D3-8D78-00A0C9CFCEE6}:_129E7AE713AC4C17BEECD56D1E198B66" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdBasicDialogs.wim" + "ModuleSignature" = "8:VsdDialogs.CE4B864F_F1C1_4B85_98D4_2A2BF5FFB12B" + } + "{E4ECAB26-4AB7-11D3-8D78-00A0C9CFCEE6}:_24107971CF6D42708AA7AA90DFE10276" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdUserInterface.wim" + "ModuleSignature" = "8:VsdUserInterface.524F4245_5254_5341_4C45_534153783400" + } + "{7DFFC192-4ABE-11D3-8D78-00A0C9CFCEE6}:_6E6D9BBB04FE46EE874BDB0FF61E27CC" + { + "Name" = "8:#1900" + "Sequence" = "3:1" + "Attributes" = "3:1" + "Dialogs" + { + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_7C1DEC913F4B46DD96E3FAB2F4F579C3" + { + "Sequence" = "3:300" + "DisplayName" = "8:Confirmer l'installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdConfirmDlg.wid" + "ModuleSignature" = "8:VsdDialogs.6DBC9783_3677_4D68_8BF5_D749558A0AC1" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_9CD75890130542FAA362099A62112D09" + { + "Sequence" = "3:100" + "DisplayName" = "8:Bienvenue" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdWelcomeDlg.wid" + "ModuleSignature" = "8:VsdDialogs.68F69290_BB7C_474E_A153_6679845F3DDF" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "CopyrightWarning" + { + "Name" = "8:CopyrightWarning" + "DisplayName" = "8:#1002" + "Description" = "8:#1102" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1202" + "DefaultValue" = "8:#1202" + "UsePlugInResources" = "11:TRUE" + } + "Welcome" + { + "Name" = "8:Welcome" + "DisplayName" = "8:#1003" + "Description" = "8:#1103" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1203" + "DefaultValue" = "8:#1203" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_D9102667BB724BC69AF9472B42650AD2" + { + "Sequence" = "3:200" + "DisplayName" = "8:Dossier d'installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdFolderDlg.wid" + "ModuleSignature" = "8:VsdDialogs.C113BC36_2532_4D45_8099_4818B1133B2F" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{7DFFC192-4ABE-11D3-8D78-00A0C9CFCEE6}:_71470E202AE748CD99FFF0D17C56201C" + { + "Name" = "8:#1900" + "Sequence" = "3:2" + "Attributes" = "3:1" + "Dialogs" + { + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_590850FBC5504ACA95B9E94E1D44BF4F" + { + "Sequence" = "3:100" + "DisplayName" = "8:Bienvenue" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" + "ModuleSignature" = "8:VsdDialogs.E35A0E2C_F131_4B57_B946_59A1A2A8F45F" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "CopyrightWarning" + { + "Name" = "8:CopyrightWarning" + "DisplayName" = "8:#1002" + "Description" = "8:#1102" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1202" + "DefaultValue" = "8:#1202" + "UsePlugInResources" = "11:TRUE" + } + "Welcome" + { + "Name" = "8:Welcome" + "DisplayName" = "8:#1003" + "Description" = "8:#1103" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1203" + "DefaultValue" = "8:#1203" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_A61E972000094EEFBC09395782DA8464" + { + "Sequence" = "3:200" + "DisplayName" = "8:Dossier d'installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminFolderDlg.wid" + "ModuleSignature" = "8:VsdDialogs.2DED2424_5429_4616_A1AD_4D62837C2ADA" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_BE6B88D7DEE9408BB26C265CFD829904" + { + "Sequence" = "3:300" + "DisplayName" = "8:Confirmer l'installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" + "ModuleSignature" = "8:VsdDialogs.FA58E60A_A1E8_4876_95FC_2AC3B5AAA5F8" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{7DFFC192-4ABE-11D3-8D78-00A0C9CFCEE6}:_C054A861FB4045FCB7E4ECF2F8A08FCF" + { + "Name" = "8:#1901" + "Sequence" = "3:1" + "Attributes" = "3:2" + "Dialogs" + { + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_3502006AE0EA4610A262A78C3B5A5E3F" + { + "Sequence" = "3:100" + "DisplayName" = "8:Progression" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdProgressDlg.wid" + "ModuleSignature" = "8:VsdDialogs.4FB12620_0D15_42D0_8677_2766FFA6923F" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "ShowProgress" + { + "Name" = "8:ShowProgress" + "DisplayName" = "8:#1009" + "Description" = "8:#1109" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{7DFFC192-4ABE-11D3-8D78-00A0C9CFCEE6}:_C0CEC7F0A6664EC89F166F25CB58AC86" + { + "Name" = "8:#1902" + "Sequence" = "3:2" + "Attributes" = "3:3" + "Dialogs" + { + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_9901D05D1778445B8CD9C771104EE79F" + { + "Sequence" = "3:100" + "DisplayName" = "8:Terminé" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" + "ModuleSignature" = "8:VsdDialogs.83D22742_1B79_46f6_9A99_DF0F2BD4C077" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{7DFFC192-4ABE-11D3-8D78-00A0C9CFCEE6}:_F502D320A6784BF3B2C2652D56FC874E" + { + "Name" = "8:#1902" + "Sequence" = "3:1" + "Attributes" = "3:3" + "Dialogs" + { + "{E4ECAB24-4AB7-11D3-8D78-00A0C9CFCEE6}:_D583508A58C243DE96769081E91585F7" + { + "Sequence" = "3:100" + "DisplayName" = "8:Terminé" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdFinishedDlg.wid" + "ModuleSignature" = "8:VsdDialogs.1DB77F5A_BA5C_4470_89B6_0B0EC07E3A10" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + } + } +} -- cgit v1.1 From d695ae3ae439ef52572268068011d4e5dbd811e5 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:46 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 12:09 Archivé dans $/fcolin/Install/InstComIvy Commentaire: (vss 2) --- comIvy/InstComIvy/InstComIvy.vdproj | 215 +++++++++++++++--------------------- 1 file changed, 91 insertions(+), 124 deletions(-) (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.vdproj b/comIvy/InstComIvy/InstComIvy.vdproj index 8adb62c..0df641a 100644 --- a/comIvy/InstComIvy/InstComIvy.vdproj +++ b/comIvy/InstComIvy/InstComIvy.vdproj @@ -15,27 +15,27 @@ { "Entry" { - "MsmKey" = "8:_496F71070518435CA55F8BD287A5DFB5" - "OwnerKey" = "8:_4FAF64717A4842019B6A91459E7E6F2A" - "MsmSig" = "8:VC_User_STL.BA9B76E9_0DE0_11D5_A548_0090278A1BB8" + "MsmKey" = "8:_12835B5401EE632F407FC85D9BC4D0EC" + "OwnerKey" = "8:_185BDC35C9164447AA876CC588EA914A" + "MsmSig" = "8:C:\\WINDOWS\\SYSTEM32\\MSVCR70D.DLL" } "Entry" { - "MsmKey" = "8:_4FAF64717A4842019B6A91459E7E6F2A" + "MsmKey" = "8:_185BDC35C9164447AA876CC588EA914A" "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:MergeModule.50212549D8E242BBB1C9246BFDAFADB2" + "MsmSig" = "8:C:\\USERS\\FCOLIN\\C++\\BUS\\COMIVY\\DEBUG\\COMIVY.DLL" } "Entry" { - "MsmKey" = "8:_7D1B6F9A93714234B73B686AC36F6FFC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:C:\\USERS\\FCOLIN\\C++\\BUS\\COMIVY\\DEBUG\\COMIVY.DLL" + "MsmKey" = "8:_934A60A38A51557A21D7C7D911E7CEB1" + "OwnerKey" = "8:_185BDC35C9164447AA876CC588EA914A" + "MsmSig" = "8:C:\\WINDOWS\\SYSTEM32\\IVY.DLL" } "Entry" { - "MsmKey" = "8:_CAC737F2898946949D47338ACD32122F" - "OwnerKey" = "8:_4FAF64717A4842019B6A91459E7E6F2A" - "MsmSig" = "8:VC_User_CRT.BA9B6D09_0DE0_11D5_A548_0090278A1BB8" + "MsmKey" = "8:_FE202B4CAE9589180F3BC6586E6389B6" + "OwnerKey" = "8:_185BDC35C9164447AA876CC588EA914A" + "MsmSig" = "8:C:\\WINDOWS\\SYSTEM32\\MSVCP70D.DLL" } } "Configurations" @@ -89,12 +89,86 @@ } "File" { + "{54DA9790-1474-11D3-8E00-00C04F6837D0}:_12835B5401EE632F407FC85D9BC4D0EC" + { + "Signature" = "8:20000000a04c53fed195c101c467e562b86ac201a04c53fed195c101000000000030080000000000000000006d0073007600630072003700300064002e0064006c006c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "SourcePath" = "8:MSVCR70D.dll" + "TargetName" = "8:MSVCR70D.dll" + "Tag" = "8:" + "Folder" = "8:_2B2C6B0DF8CC40A8A8E2DFA350230B5A" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{54DA9790-1474-11D3-8E00-00C04F6837D0}:_934A60A38A51557A21D7C7D911E7CEB1" + { + "Signature" = "8:2000000067a22599ad60c20155b7d462b86ac2018f5ce7609122c2010000000000d0020000000000000000004900760079002e0064006c006c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "SourcePath" = "8:Ivy.dll" + "TargetName" = "8:Ivy.dll" + "Tag" = "8:" + "Folder" = "8:_2B2C6B0DF8CC40A8A8E2DFA350230B5A" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{54DA9790-1474-11D3-8E00-00C04F6837D0}:_FE202B4CAE9589180F3BC6586E6389B6" + { + "Signature" = "8:2000000090c39d10d295c10160dedb62b86ac20190c39d10d295c1010000000000400b0000000000000000006d0073007600630070003700300064002e0064006c006c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "SourcePath" = "8:MSVCP70D.dll" + "TargetName" = "8:MSVCP70D.dll" + "Tag" = "8:" + "Folder" = "8:_2B2C6B0DF8CC40A8A8E2DFA350230B5A" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } } "FileType" { } "Folder" { + "{777C097F-0ED8-11D3-8D6C-00A0C9CFCEE6}:_2B2C6B0DF8CC40A8A8E2DFA350230B5A" + { + "Name" = "8:#1914" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:SystemFolder" + "Folders" + { + } + } "{EE62640D-12F2-11D3-8D6C-00A0C9CFCEE6}:_4A020A91D793427C9F8AC28A4383C66D" { "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" @@ -233,41 +307,12 @@ } "ProjectOutput" { - "{B1E2BB22-187D-11D3-8E02-00C04F6837D0}:_7D1B6F9A93714234B73B686AC36F6FFC" + "{B1E2BB22-187D-11D3-8E02-00C04F6837D0}:_185BDC35C9164447AA876CC588EA914A" { "SourcePath" = "8:..\\..\\C++\\Bus\\comIvy\\Debug\\comIvy.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_4A020A91D793427C9F8AC28A4383C66D" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:2" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectCanonicalName" = "8:..\\..\\C++\\Bus\\comIvy\\comIvy.vcproj" - "OutputProjectGuid" = "8:{2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{B1E2BB22-187D-11D3-8E02-00C04F6837D0}:_96502D96945844C4BFAA86A3F1CFAE88" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_4A020A91D793427C9F8AC28A4383C66D" + "Folder" = "8:_2B2C6B0DF8CC40A8A8E2DFA350230B5A" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -283,9 +328,9 @@ "IsolateTo" = "8:" "ProjectOutputGroupRegister" = "3:1" "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:ContentFiles" - "OutputProjectCanonicalName" = "8:..\\..\\C++\\Bus\\comIvy\\comIvy.vcproj" - "OutputProjectGuid" = "8:{2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}" + "OutputGroupCanonicalName" = "8:Built" + "OutputProjectCanonicalName" = "8:comIvy\\comIvy.vcproj" + "OutputProjectGuid" = "8:{561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}" "ShowKeyOutput" = "11:TRUE" "ExcludeFilters" { @@ -297,7 +342,7 @@ "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:ComIvy" "ProductCode" = "8:{98F05275-9FE2-4613-81CD-EEF6C529F63E}" - "PackageCode" = "8:{405F0CC9-45E0-4B05-92F8-149241535681}" + "PackageCode" = "8:{A213362A-059D-4BA0-BC7A-5C2E268D2D53}" "UpgradeCode" = "8:{1CC5F500-0E3C-401C-B711-3779A4175563}" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:TRUE" @@ -323,84 +368,6 @@ } "MergeModule" { - "{AC8774A4-3E09-11D3-8E14-00C04F6837D0}:_496F71070518435CA55F8BD287A5DFB5" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_stl.msm" - "ModuleSignature" = "8:VC_User_STL.BA9B76E9_0DE0_11D5_A548_0090278A1BB8" - "Properties" - { - "DIR_RETARGET_TARGETDIR" - { - "Name" = "8:DIR_RETARGET_TARGETDIR" - "DisplayName" = "8:Module Retargetable Folder" - "Description" = "8:" - "Type" = "3:10" - "ContextData" = "8:IsolationDir" - "Attributes" = "3:6" - "Setting" = "3:1" - "UsePlugInResources" = "11:FALSE" - } - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{AC8774A4-3E09-11D3-8E14-00C04F6837D0}:_4FAF64717A4842019B6A91459E7E6F2A" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:..\\InstIvy\\Debug\\InstIvy.msm" - "ModuleSignature" = "8:MergeModule.50212549D8E242BBB1C9246BFDAFADB2" - "Properties" - { - "_7BEBD1D67A934D228BFBAE7C11467C9A.50212549D8E242BBB1C9246BFDAFADB2" - { - "Name" = "8:_7BEBD1D67A934D228BFBAE7C11467C9A.50212549D8E242BBB1C9246BFDAFADB2" - "DisplayName" = "8:Dossier Remplacement pour les modules" - "Description" = "8:" - "Type" = "3:32769" - "ContextData" = "8:_RetargetableFolder" - "Attributes" = "3:6" - "Setting" = "3:1" - "UsePlugInResources" = "11:FALSE" - } - } - "LanguageId" = "3:1036" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{AC8774A4-3E09-11D3-8E14-00C04F6837D0}:_CAC737F2898946949D47338ACD32122F" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_crt.msm" - "ModuleSignature" = "8:VC_User_CRT.BA9B6D09_0DE0_11D5_A548_0090278A1BB8" - "Properties" - { - "DIR_RETARGET_TARGETDIR" - { - "Name" = "8:DIR_RETARGET_TARGETDIR" - "DisplayName" = "8:Module Retargetable Folder" - "Description" = "8:" - "Type" = "3:10" - "ContextData" = "8:IsolationDir" - "Attributes" = "3:6" - "Setting" = "3:1" - "UsePlugInResources" = "11:FALSE" - } - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } } "UserInterface" { -- cgit v1.1 From ec71b0acd0b9d58bdd0d69392632464445198dc2 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:48 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 17:32 Archivé dans $/Bus/Install/InstComIvy Commentaire: (vss 3) --- comIvy/InstComIvy/InstComIvy.vdproj | 85 +------------------------------------ 1 file changed, 2 insertions(+), 83 deletions(-) (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.vdproj b/comIvy/InstComIvy/InstComIvy.vdproj index 0df641a..8f8e940 100644 --- a/comIvy/InstComIvy/InstComIvy.vdproj +++ b/comIvy/InstComIvy/InstComIvy.vdproj @@ -7,36 +7,18 @@ "LanguageId" = "3:1036" "CodePage" = "3:1252" "UILanguageId" = "3:1036" -"SccProjectName" = "8:\"$/fcolin\", SPEAAAAA" -"SccLocalPath" = "8:..\\.." +"SccProjectName" = "8:\"$/Bus/Install/InstComIvy\", BREAAAAA" +"SccLocalPath" = "8:." "SccAuxPath" = "8:" "SccProvider" = "8:MSSCCI:Microsoft Visual SourceSafe" "Hierarchy" { "Entry" { - "MsmKey" = "8:_12835B5401EE632F407FC85D9BC4D0EC" - "OwnerKey" = "8:_185BDC35C9164447AA876CC588EA914A" - "MsmSig" = "8:C:\\WINDOWS\\SYSTEM32\\MSVCR70D.DLL" - } - "Entry" - { "MsmKey" = "8:_185BDC35C9164447AA876CC588EA914A" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:C:\\USERS\\FCOLIN\\C++\\BUS\\COMIVY\\DEBUG\\COMIVY.DLL" } - "Entry" - { - "MsmKey" = "8:_934A60A38A51557A21D7C7D911E7CEB1" - "OwnerKey" = "8:_185BDC35C9164447AA876CC588EA914A" - "MsmSig" = "8:C:\\WINDOWS\\SYSTEM32\\IVY.DLL" - } - "Entry" - { - "MsmKey" = "8:_FE202B4CAE9589180F3BC6586E6389B6" - "OwnerKey" = "8:_185BDC35C9164447AA876CC588EA914A" - "MsmSig" = "8:C:\\WINDOWS\\SYSTEM32\\MSVCP70D.DLL" - } } "Configurations" { @@ -89,69 +71,6 @@ } "File" { - "{54DA9790-1474-11D3-8E00-00C04F6837D0}:_12835B5401EE632F407FC85D9BC4D0EC" - { - "Signature" = "8:20000000a04c53fed195c101c467e562b86ac201a04c53fed195c101000000000030080000000000000000006d0073007600630072003700300064002e0064006c006c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - "SourcePath" = "8:MSVCR70D.dll" - "TargetName" = "8:MSVCR70D.dll" - "Tag" = "8:" - "Folder" = "8:_2B2C6B0DF8CC40A8A8E2DFA350230B5A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{54DA9790-1474-11D3-8E00-00C04F6837D0}:_934A60A38A51557A21D7C7D911E7CEB1" - { - "Signature" = "8:2000000067a22599ad60c20155b7d462b86ac2018f5ce7609122c2010000000000d0020000000000000000004900760079002e0064006c006c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - "SourcePath" = "8:Ivy.dll" - "TargetName" = "8:Ivy.dll" - "Tag" = "8:" - "Folder" = "8:_2B2C6B0DF8CC40A8A8E2DFA350230B5A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{54DA9790-1474-11D3-8E00-00C04F6837D0}:_FE202B4CAE9589180F3BC6586E6389B6" - { - "Signature" = "8:2000000090c39d10d295c10160dedb62b86ac20190c39d10d295c1010000000000400b0000000000000000006d0073007600630070003700300064002e0064006c006c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - "SourcePath" = "8:MSVCP70D.dll" - "TargetName" = "8:MSVCP70D.dll" - "Tag" = "8:" - "Folder" = "8:_2B2C6B0DF8CC40A8A8E2DFA350230B5A" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } } "FileType" { -- cgit v1.1 From 206c857d32fcd8278d01ab5c9b331658fc9f4de0 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:49 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 17:33 Archivé dans $/Bus/Install/InstComIvy Commentaire: (vss 4) --- comIvy/InstComIvy/InstComIvy.vdproj | 95 ++++++++++++++++++++++++++++++++++--- 1 file changed, 88 insertions(+), 7 deletions(-) (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.vdproj b/comIvy/InstComIvy/InstComIvy.vdproj index 8f8e940..c60e66b 100644 --- a/comIvy/InstComIvy/InstComIvy.vdproj +++ b/comIvy/InstComIvy/InstComIvy.vdproj @@ -15,9 +15,27 @@ { "Entry" { - "MsmKey" = "8:_185BDC35C9164447AA876CC588EA914A" + "MsmKey" = "8:_0AD2E46EB65340B1AB9CC25A71562F9C" "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:C:\\USERS\\FCOLIN\\C++\\BUS\\COMIVY\\DEBUG\\COMIVY.DLL" + "MsmSig" = "8:C:\\USERS\\FCOLIN\\PROGRAM FILES\\DEBUG\\COMIVY.DLL" + } + "Entry" + { + "MsmKey" = "8:_12835B5401EE632F407FC85D9BC4D0EC" + "OwnerKey" = "8:_0AD2E46EB65340B1AB9CC25A71562F9C" + "MsmSig" = "8:C:\\WINDOWS\\SYSTEM32\\MSVCR70D.DLL" + } + "Entry" + { + "MsmKey" = "8:_934A60A38A51557A21D7C7D911E7CEB1" + "OwnerKey" = "8:_0AD2E46EB65340B1AB9CC25A71562F9C" + "MsmSig" = "8:C:\\WINDOWS\\SYSTEM32\\IVY.DLL" + } + "Entry" + { + "MsmKey" = "8:_FE202B4CAE9589180F3BC6586E6389B6" + "OwnerKey" = "8:_0AD2E46EB65340B1AB9CC25A71562F9C" + "MsmSig" = "8:C:\\WINDOWS\\SYSTEM32\\MSVCP70D.DLL" } } "Configurations" @@ -71,6 +89,69 @@ } "File" { + "{54DA9790-1474-11D3-8E00-00C04F6837D0}:_12835B5401EE632F407FC85D9BC4D0EC" + { + "Signature" = "8:20000000a04c53fed195c10125e51635ed6ac201a04c53fed195c101000000000030080000000000000000006d0073007600630072003700300064002e0064006c006c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "SourcePath" = "8:MSVCR70D.dll" + "TargetName" = "8:MSVCR70D.dll" + "Tag" = "8:" + "Folder" = "8:_4A020A91D793427C9F8AC28A4383C66D" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{54DA9790-1474-11D3-8E00-00C04F6837D0}:_934A60A38A51557A21D7C7D911E7CEB1" + { + "Signature" = "8:2000000067a22599ad60c201cb821435ed6ac2018f5ce7609122c2010000000000d0020000000000000000004900760079002e0064006c006c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "SourcePath" = "8:Ivy.dll" + "TargetName" = "8:Ivy.dll" + "Tag" = "8:" + "Folder" = "8:_4A020A91D793427C9F8AC28A4383C66D" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{54DA9790-1474-11D3-8E00-00C04F6837D0}:_FE202B4CAE9589180F3BC6586E6389B6" + { + "Signature" = "8:2000000090c39d10d295c101cb821435ed6ac20190c39d10d295c1010000000000400b0000000000000000006d0073007600630070003700300064002e0064006c006c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "SourcePath" = "8:MSVCP70D.dll" + "TargetName" = "8:MSVCP70D.dll" + "Tag" = "8:" + "Folder" = "8:_4A020A91D793427C9F8AC28A4383C66D" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } } "FileType" { @@ -226,12 +307,12 @@ } "ProjectOutput" { - "{B1E2BB22-187D-11D3-8E02-00C04F6837D0}:_185BDC35C9164447AA876CC588EA914A" + "{B1E2BB22-187D-11D3-8E02-00C04F6837D0}:_0AD2E46EB65340B1AB9CC25A71562F9C" { - "SourcePath" = "8:..\\..\\C++\\Bus\\comIvy\\Debug\\comIvy.dll" + "SourcePath" = "8:..\\..\\Program Files\\Debug\\comIvy.dll" "TargetName" = "8:" "Tag" = "8:" - "Folder" = "8:_2B2C6B0DF8CC40A8A8E2DFA350230B5A" + "Folder" = "8:_4A020A91D793427C9F8AC28A4383C66D" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" @@ -248,8 +329,8 @@ "ProjectOutputGroupRegister" = "3:1" "OutputConfiguration" = "8:" "OutputGroupCanonicalName" = "8:Built" - "OutputProjectCanonicalName" = "8:comIvy\\comIvy.vcproj" - "OutputProjectGuid" = "8:{561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}" + "OutputProjectCanonicalName" = "8:..\\..\\C++\\Bus\\comIvy\\comIvy.vcproj" + "OutputProjectGuid" = "8:{2AF2B2E6-446C-4B06-B175-E221F6ABA5BA}" "ShowKeyOutput" = "11:TRUE" "ExcludeFilters" { -- cgit v1.1 From 857725b766543d66fe04a7427bcf2eb9f49bfab4 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:52 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:54 Créé Commentaire: (vss 1) --- comIvy/InstComIvy/InstComIvy.vdproj.vspscc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 comIvy/InstComIvy/InstComIvy.vdproj.vspscc (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.vdproj.vspscc b/comIvy/InstComIvy/InstComIvy.vdproj.vspscc new file mode 100644 index 0000000..f692675 --- /dev/null +++ b/comIvy/InstComIvy/InstComIvy.vdproj.vspscc @@ -0,0 +1,10 @@ +"" +{ +"FILE_VERSION" = "9237" +"ENLISTMENT_CHOICE" = "NEVER" +"PROJECT_FILE_RELATIVE_PATH" = "relative:Install\\InstComIvy" +"NUMBER_OF_EXCLUDED_FILES" = "0" +"ORIGINAL_PROJECT_FILE_PATH" = "" +"NUMBER_OF_NESTED_PROJECTS" = "0" +"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" +} -- cgit v1.1 From 7cd8733ab764c04256c6e21d4096e8f97490b42c Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:54 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 17:28 Créé Commentaire: (vss 1) --- comIvy/InstComIvy/InstComIvy.vsscc | Bin 0 -> 46 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 comIvy/InstComIvy/InstComIvy.vsscc (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.vsscc b/comIvy/InstComIvy/InstComIvy.vsscc new file mode 100644 index 0000000..f4e2788 Binary files /dev/null and b/comIvy/InstComIvy/InstComIvy.vsscc differ -- cgit v1.1 From 6ea27fabe683f862f324ecf1f39809ffc2dc43e1 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:55 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 17:32 Archivé dans $/Bus/Install/InstComIvy Commentaire: (vss 2) --- comIvy/InstComIvy/InstComIvy.vsscc | Bin 46 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.vsscc b/comIvy/InstComIvy/InstComIvy.vsscc index f4e2788..e69de29 100644 Binary files a/comIvy/InstComIvy/InstComIvy.vsscc and b/comIvy/InstComIvy/InstComIvy.vsscc differ -- cgit v1.1 From f076e305041006e8e76774a3b8a08060482d3c47 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:13:58 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 17:28 Créé Commentaire: (vss 1) --- comIvy/InstComIvy/InstComIvy.vssscc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 comIvy/InstComIvy/InstComIvy.vssscc (limited to 'comIvy') diff --git a/comIvy/InstComIvy/InstComIvy.vssscc b/comIvy/InstComIvy/InstComIvy.vssscc new file mode 100644 index 0000000..150e7a6 --- /dev/null +++ b/comIvy/InstComIvy/InstComIvy.vssscc @@ -0,0 +1,10 @@ +"" +{ +"FILE_VERSION" = "9237" +"ENLISTMENT_CHOICE" = "NEVER" +"PROJECT_FILE_RELATIVE_PATH" = "relative:Install\\InstComIvy" +"NUMBER_OF_EXCLUDED_FILES" = "0" +"ORIGINAL_PROJECT_FILE_PATH" = "" +"NUMBER_OF_NESTED_PROJECTS" = "0" +"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" +} -- cgit v1.1 From d24f45494abf0b15648530892a79a861597c3e1b Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:05 +0000 Subject: Utilisateur : Fcolin Date : 10/02/04 Heure : 17:44 Créé Commentaire: (vss 1) --- comIvy/Install/Install.vdproj | 709 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 709 insertions(+) create mode 100644 comIvy/Install/Install.vdproj (limited to 'comIvy') diff --git a/comIvy/Install/Install.vdproj b/comIvy/Install/Install.vdproj new file mode 100644 index 0000000..a81e71f --- /dev/null +++ b/comIvy/Install/Install.vdproj @@ -0,0 +1,709 @@ +"DeployProject" +{ +"VSVersion" = "3:701" +"ProjectType" = "8:{2C2AF0D9-9B47-4FE5-BEF2-169778172667}" +"IsWebType" = "8:FALSE" +"ProjectName" = "8:Install" +"LanguageId" = "3:1036" +"CodePage" = "3:1252" +"UILanguageId" = "3:1036" +"SccProjectName" = "8:SAK" +"SccLocalPath" = "8:SAK" +"SccAuxPath" = "8:SAK" +"SccProvider" = "8:SAK" + "Hierarchy" + { + "Entry" + { + "MsmKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B0F1016B0B2C4892829C2DC114870F74" + "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_CC18EEF87C2A40719F721B69D0749860" + "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" + "MsmSig" = "8:_UNDEFINED" + } + } + "Configurations" + { + "Debug" + { + "DisplayName" = "8:Debug" + "IsDebugOnly" = "11:TRUE" + "IsReleaseOnly" = "11:FALSE" + "OutputFilename" = "8:Debug\\Install.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + } + "Release" + { + "DisplayName" = "8:Release" + "IsDebugOnly" = "11:FALSE" + "IsReleaseOnly" = "11:TRUE" + "OutputFilename" = "8:Release\\Install.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + } + } + "Deployable" + { + "CustomAction" + { + } + "DefaultFeature" + { + "Name" = "8:DefaultFeature" + "Title" = "8:" + "Description" = "8:" + } + "ExternalPersistence" + { + "LaunchCondition" + { + } + } + "Feature" + { + } + "File" + { + } + "FileType" + { + } + "Folder" + { + "{58C0ADA3-3CEA-43BD-A3B3-2EA121BC8217}:_19810136D0DB43A685CAD4C802A4C6F2" + { + "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" + "Name" = "8:#1925" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:TARGETDIR" + "Folders" + { + } + } + "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_38A31FB9AF9F412FA1B0013890A1409B" + { + "Name" = "8:#1916" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:DesktopFolder" + "Folders" + { + } + } + "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_52F5EEA72A1B4C9C8AC0B6F81D1416CA" + { + "Name" = "8:#1919" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:ProgramMenuFolder" + "Folders" + { + } + } + } + "LaunchCondition" + { + } + "Locator" + { + } + "MsiBootstrapper" + { + "LangId" = "3:1036" + } + "Product" + { + "Name" = "8:Microsoft Visual Studio" + "ProductName" = "8:comIvy" + "ProductCode" = "8:{B0DAB23E-2ED4-43A8-9671-0D8D4CD0D244}" + "PackageCode" = "8:{54746A22-9D17-4BAC-9491-3D5E04F63048}" + "UpgradeCode" = "8:{38FA115C-CED5-491F-AF2D-C26B035D114D}" + "RestartWWWService" = "11:FALSE" + "RemovePreviousVersions" = "11:FALSE" + "DetectNewerInstalledVersion" = "11:TRUE" + "ProductVersion" = "8:1.0.0" + "Manufacturer" = "8:CENA PII" + "ARPHELPTELEPHONE" = "8:" + "ARPHELPLINK" = "8:" + "Title" = "8:Install" + "Subject" = "8:" + "ARPCONTACT" = "8:CENA PII" + "Keywords" = "8:" + "ARPCOMMENTS" = "8:" + "ARPURLINFOABOUT" = "8:" + "ARPPRODUCTICON" = "8:" + "ARPIconIndex" = "3:0" + "SearchPath" = "8:" + "UseSystemSearchPath" = "11:TRUE" + } + "Registry" + { + "HKLM" + { + "Keys" + { + "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_94E029251E7745D292C6F991E78944EC" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_48CC9D9713AB423A8FF43D456E0447A8" + { + "Name" = "8:[Manufacturer]" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + } + "Values" + { + } + } + } + "Values" + { + } + } + } + } + "HKCU" + { + "Keys" + { + "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_0CDA7D268F7D447388353BCAD2358159" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_1ABFED03E2A24757B1CAE8A241A5B014" + { + "Name" = "8:[Manufacturer]" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + } + "Values" + { + } + } + } + "Values" + { + } + } + } + } + "HKCR" + { + "Keys" + { + } + } + "HKU" + { + "Keys" + { + } + } + "HKPU" + { + "Keys" + { + } + } + } + "Sequences" + { + } + "Shortcut" + { + } + "UserInterface" + { + "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_1BA8C5FDBAFD4DB8BAA6ED42191DB909" + { + "Name" = "8:#1900" + "Sequence" = "3:2" + "Attributes" = "3:1" + "Dialogs" + { + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_054EA78743CF4633B1A590B0610DF4D5" + { + "Sequence" = "3:100" + "DisplayName" = "8:Bienvenue" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "CopyrightWarning" + { + "Name" = "8:CopyrightWarning" + "DisplayName" = "8:#1002" + "Description" = "8:#1102" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1202" + "DefaultValue" = "8:#1202" + "UsePlugInResources" = "11:TRUE" + } + "Welcome" + { + "Name" = "8:Welcome" + "DisplayName" = "8:#1003" + "Description" = "8:#1103" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1203" + "DefaultValue" = "8:#1203" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_90B1541F45A8487E8DB27D2B9742AD09" + { + "Sequence" = "3:200" + "DisplayName" = "8:Dossier d'installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminFolderDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_C358D9E56AD443708F0925EA916C0641" + { + "Sequence" = "3:300" + "DisplayName" = "8:Confirmer l'installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_1FCE16B262EA46AA8E2FDB8F2086DE2F" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdBasicDialogs.wim" + } + "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_22B46AE500B84B259DF8A2BBB11CE72E" + { + "Name" = "8:#1900" + "Sequence" = "3:1" + "Attributes" = "3:1" + "Dialogs" + { + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_0F1D0B77257042B6B5782D9033DF747F" + { + "Sequence" = "3:200" + "DisplayName" = "8:Dossier d'installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdFolderDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_11E69662A4174EB6B6241635312405BC" + { + "Sequence" = "3:300" + "DisplayName" = "8:Confirmer l'installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdConfirmDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_A87D64CB1DC74CAC8B8061737E765F23" + { + "Sequence" = "3:100" + "DisplayName" = "8:Bienvenue" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdWelcomeDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "CopyrightWarning" + { + "Name" = "8:CopyrightWarning" + "DisplayName" = "8:#1002" + "Description" = "8:#1102" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1202" + "DefaultValue" = "8:#1202" + "UsePlugInResources" = "11:TRUE" + } + "Welcome" + { + "Name" = "8:Welcome" + "DisplayName" = "8:#1003" + "Description" = "8:#1103" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1203" + "DefaultValue" = "8:#1203" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_38290358274C4AD88B59BAAD647D2907" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdUserInterface.wim" + } + "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_763FB10ACF6844EB825C0E4978A64536" + { + "Name" = "8:#1901" + "Sequence" = "3:1" + "Attributes" = "3:2" + "Dialogs" + { + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_276D2F8D972D49ADA8C0E9C065443139" + { + "Sequence" = "3:100" + "DisplayName" = "8:Progression" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdProgressDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "ShowProgress" + { + "Name" = "8:ShowProgress" + "DisplayName" = "8:#1009" + "Description" = "8:#1109" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_C60BDA3F34144C85BDF151453191612D" + { + "Name" = "8:#1902" + "Sequence" = "3:1" + "Attributes" = "3:3" + "Dialogs" + { + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_8F8705761D294D4B8923ED848878D08A" + { + "Sequence" = "3:100" + "DisplayName" = "8:Terminé" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdFinishedDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "UpdateText" + { + "Name" = "8:UpdateText" + "DisplayName" = "8:#1058" + "Description" = "8:#1158" + "Type" = "3:15" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1258" + "DefaultValue" = "8:#1258" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_E1DF3A2398E34A0D9AFA1E9297BC9634" + { + "Name" = "8:#1902" + "Sequence" = "3:2" + "Attributes" = "3:3" + "Dialogs" + { + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_62F1AE7FFD414ABEA6A8474C91623DE5" + { + "Sequence" = "3:100" + "DisplayName" = "8:Terminé" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_F0A3B0E4FFC2432B8563A348C36A8034" + { + "Name" = "8:#1901" + "Sequence" = "3:2" + "Attributes" = "3:2" + "Dialogs" + { + "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_7705C265BD034CACAD7651043EDC7F82" + { + "Sequence" = "3:100" + "DisplayName" = "8:Progression" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminProgressDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "ShowProgress" + { + "Name" = "8:ShowProgress" + "DisplayName" = "8:#1009" + "Description" = "8:#1109" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + } + "MergeModule" + { + "{35A69C6E-5BA4-440D-803D-762B59A45393}:_B0F1016B0B2C4892829C2DC114870F74" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:TRUE" + "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" + "Properties" + { + } + "LanguageId" = "3:0" + "Exclude" = "11:FALSE" + "Folder" = "8:" + "Feature" = "8:" + "IsolateTo" = "8:" + } + "{35A69C6E-5BA4-440D-803D-762B59A45393}:_CC18EEF87C2A40719F721B69D0749860" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:TRUE" + "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" + "Properties" + { + } + "LanguageId" = "3:0" + "Exclude" = "11:FALSE" + "Folder" = "8:" + "Feature" = "8:" + "IsolateTo" = "8:" + } + } + "ProjectOutput" + { + "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_AA0E03B004294FB6A2A650251AC616A3" + { + "SourcePath" = "8:..\\..\\..\\..\\Program Files\\Release\\comIvy.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_19810136D0DB43A685CAD4C802A4C6F2" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + "ProjectOutputGroupRegister" = "3:1" + "OutputConfiguration" = "8:" + "OutputGroupCanonicalName" = "8:Built" + "OutputProjectGuid" = "8:{561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}" + "ShowKeyOutput" = "11:TRUE" + "ExcludeFilters" + { + } + } + } + "VJSharpPlugin" + { + } + } +} -- cgit v1.1 From 371fafd37c32cff94aa97b8cf51b3536c5b9a1cb Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:07 +0000 Subject: Utilisateur : Fcolin Date : 7/06/04 Heure : 10:03 Archivé dans $/Bus/comIvy/Install Commentaire: (vss 2) --- comIvy/Install/Install.vdproj | 130 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 115 insertions(+), 15 deletions(-) (limited to 'comIvy') diff --git a/comIvy/Install/Install.vdproj b/comIvy/Install/Install.vdproj index a81e71f..27f03c0 100644 --- a/comIvy/Install/Install.vdproj +++ b/comIvy/Install/Install.vdproj @@ -15,22 +15,46 @@ { "Entry" { + "MsmKey" = "8:_23777764184941239876287C2822D1A4" + "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_23777764184941239876287C2822D1A4" + "OwnerKey" = "8:_386AB9B453194B69A0AD764EF06258EE" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_386AB9B453194B69A0AD764EF06258EE" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { "MsmKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B0F1016B0B2C4892829C2DC114870F74" - "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" + "MsmKey" = "8:_C8EF717B27B6D2E2D7204347C28D8409" + "OwnerKey" = "8:_386AB9B453194B69A0AD764EF06258EE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_CC18EEF87C2A40719F721B69D0749860" + "MsmKey" = "8:_EED9561BF2B84BB3B2096E0CDBAFD8E5" "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" "MsmSig" = "8:_UNDEFINED" } + "Entry" + { + "MsmKey" = "8:_EED9561BF2B84BB3B2096E0CDBAFD8E5" + "OwnerKey" = "8:_386AB9B453194B69A0AD764EF06258EE" + "MsmSig" = "8:_UNDEFINED" + } } "Configurations" { @@ -55,7 +79,7 @@ "DisplayName" = "8:Release" "IsDebugOnly" = "11:FALSE" "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\Install.msi" + "OutputFilename" = "8:..\\..\\..\\..\\Install\\comIvy.msi" "PackageFilesAs" = "3:2" "PackageFileSize" = "3:-2147483648" "CabType" = "3:1" @@ -64,7 +88,7 @@ "CertificateFile" = "8:" "PrivateKeyFile" = "8:" "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" + "InstallerBootstrapper" = "3:1" } } "Deployable" @@ -89,6 +113,26 @@ } "File" { + "{A582A373-4685-4296-BEFE-614B80A702C3}:_C8EF717B27B6D2E2D7204347C28D8409" + { + "SourcePath" = "8:WSOCK32.dll" + "TargetName" = "8:WSOCK32.dll" + "Tag" = "8:" + "Folder" = "8:_19810136D0DB43A685CAD4C802A4C6F2" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:TRUE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } } "FileType" { @@ -144,17 +188,17 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:comIvy" - "ProductCode" = "8:{B0DAB23E-2ED4-43A8-9671-0D8D4CD0D244}" - "PackageCode" = "8:{54746A22-9D17-4BAC-9491-3D5E04F63048}" + "ProductCode" = "8:{D72CC03B-1E81-446F-82EE-7B2C9DAFC76A}" + "PackageCode" = "8:{2B0FE4DE-1666-4200-A414-CE920797E733}" "UpgradeCode" = "8:{38FA115C-CED5-491F-AF2D-C26B035D114D}" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:FALSE" "DetectNewerInstalledVersion" = "11:TRUE" - "ProductVersion" = "8:1.0.0" + "ProductVersion" = "8:1.1.0" "Manufacturer" = "8:CENA PII" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" - "Title" = "8:Install" + "Title" = "8:comIvy" "Subject" = "8:" "ARPCONTACT" = "8:CENA PII" "Keywords" = "8:" @@ -642,11 +686,11 @@ } "MergeModule" { - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_B0F1016B0B2C4892829C2DC114870F74" + "{35A69C6E-5BA4-440D-803D-762B59A45393}:_23777764184941239876287C2822D1A4" { "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" + "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" "Properties" { } @@ -656,11 +700,11 @@ "Feature" = "8:" "IsolateTo" = "8:" } - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_CC18EEF87C2A40719F721B69D0749860" + "{35A69C6E-5BA4-440D-803D-762B59A45393}:_EED9561BF2B84BB3B2096E0CDBAFD8E5" { "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" + "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" "Properties" { } @@ -673,9 +717,9 @@ } "ProjectOutput" { - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_AA0E03B004294FB6A2A650251AC616A3" + "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_19FB70C8F6D64310B906EE12158D6D1A" { - "SourcePath" = "8:..\\..\\..\\..\\Program Files\\Release\\comIvy.dll" + "SourcePath" = "8:" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_19810136D0DB43A685CAD4C802A4C6F2" @@ -694,6 +738,62 @@ "IsolateTo" = "8:" "ProjectOutputGroupRegister" = "3:1" "OutputConfiguration" = "8:" + "OutputGroupCanonicalName" = "8:ContentFiles" + "OutputProjectGuid" = "8:{561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}" + "ShowKeyOutput" = "11:TRUE" + "ExcludeFilters" + { + } + } + "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_386AB9B453194B69A0AD764EF06258EE" + { + "SourcePath" = "8:..\\..\\Ivy\\Release\\Ivy.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_19810136D0DB43A685CAD4C802A4C6F2" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + "ProjectOutputGroupRegister" = "3:1" + "OutputConfiguration" = "8:" + "OutputGroupCanonicalName" = "8:Built" + "OutputProjectGuid" = "8:{9818D652-CC05-463E-880D-AFCA2C7BFABE}" + "ShowKeyOutput" = "11:TRUE" + "ExcludeFilters" + { + } + } + "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_AA0E03B004294FB6A2A650251AC616A3" + { + "SourcePath" = "8:..\\Release\\comIvy.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_19810136D0DB43A685CAD4C802A4C6F2" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + "ProjectOutputGroupRegister" = "3:4" + "OutputConfiguration" = "8:" "OutputGroupCanonicalName" = "8:Built" "OutputProjectGuid" = "8:{561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}" "ShowKeyOutput" = "11:TRUE" -- cgit v1.1 From 7f94e13db3cca702e9c73cf3d024146a61eb69b2 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:09 +0000 Subject: Utilisateur : Fcolin Date : 7/06/04 Heure : 10:56 Archivé dans $/Bus/comIvy/Install Commentaire: (vss 3) --- comIvy/Install/Install.vdproj | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'comIvy') diff --git a/comIvy/Install/Install.vdproj b/comIvy/Install/Install.vdproj index 27f03c0..73fc7a0 100644 --- a/comIvy/Install/Install.vdproj +++ b/comIvy/Install/Install.vdproj @@ -15,20 +15,20 @@ { "Entry" { - "MsmKey" = "8:_23777764184941239876287C2822D1A4" - "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" + "MsmKey" = "8:_386AB9B453194B69A0AD764EF06258EE" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_23777764184941239876287C2822D1A4" + "MsmKey" = "8:_72056A4E49A84B97947CFF77C76387EA" "OwnerKey" = "8:_386AB9B453194B69A0AD764EF06258EE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_386AB9B453194B69A0AD764EF06258EE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_72056A4E49A84B97947CFF77C76387EA" + "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -45,14 +45,14 @@ } "Entry" { - "MsmKey" = "8:_EED9561BF2B84BB3B2096E0CDBAFD8E5" - "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" + "MsmKey" = "8:_C9A40EECCFF7488B83A5E7F21420327B" + "OwnerKey" = "8:_386AB9B453194B69A0AD764EF06258EE" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_EED9561BF2B84BB3B2096E0CDBAFD8E5" - "OwnerKey" = "8:_386AB9B453194B69A0AD764EF06258EE" + "MsmKey" = "8:_C9A40EECCFF7488B83A5E7F21420327B" + "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" "MsmSig" = "8:_UNDEFINED" } } @@ -188,13 +188,13 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:comIvy" - "ProductCode" = "8:{D72CC03B-1E81-446F-82EE-7B2C9DAFC76A}" - "PackageCode" = "8:{2B0FE4DE-1666-4200-A414-CE920797E733}" + "ProductCode" = "8:{3DED3C78-F4B2-4A00-943C-DF7D389E3DE3}" + "PackageCode" = "8:{31107A1B-F4D8-4B40-A876-3055F4B20FFE}" "UpgradeCode" = "8:{38FA115C-CED5-491F-AF2D-C26B035D114D}" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:FALSE" "DetectNewerInstalledVersion" = "11:TRUE" - "ProductVersion" = "8:1.1.0" + "ProductVersion" = "8:1.2.0" "Manufacturer" = "8:CENA PII" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" @@ -686,11 +686,11 @@ } "MergeModule" { - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_23777764184941239876287C2822D1A4" + "{35A69C6E-5BA4-440D-803D-762B59A45393}:_72056A4E49A84B97947CFF77C76387EA" { "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" + "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" "Properties" { } @@ -700,11 +700,11 @@ "Feature" = "8:" "IsolateTo" = "8:" } - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_EED9561BF2B84BB3B2096E0CDBAFD8E5" + "{35A69C6E-5BA4-440D-803D-762B59A45393}:_C9A40EECCFF7488B83A5E7F21420327B" { "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" + "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" "Properties" { } -- cgit v1.1 From 55458b9bf3c8b50344e2f91c141216a6407d0541 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:10 +0000 Subject: Utilisateur : Fcolin Date : 4/01/05 Heure : 17:42 Archivé dans $/Bus/comIvy/Install Commentaire: (vss 4) --- comIvy/Install/Install.vdproj | 58 +++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 29 deletions(-) (limited to 'comIvy') diff --git a/comIvy/Install/Install.vdproj b/comIvy/Install/Install.vdproj index 73fc7a0..3e8e41d 100644 --- a/comIvy/Install/Install.vdproj +++ b/comIvy/Install/Install.vdproj @@ -15,44 +15,44 @@ { "Entry" { - "MsmKey" = "8:_386AB9B453194B69A0AD764EF06258EE" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_1447414B7EE3459CA5494709C46A8C05" + "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_72056A4E49A84B97947CFF77C76387EA" - "OwnerKey" = "8:_386AB9B453194B69A0AD764EF06258EE" + "MsmKey" = "8:_1447414B7EE3459CA5494709C46A8C05" + "OwnerKey" = "8:_EC70CEDC42CD4B468A8008C772D58DAC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_72056A4E49A84B97947CFF77C76387EA" + "MsmKey" = "8:_7E2EA4631FEA4004B5A496488E91D91B" "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" - "OwnerKey" = "8:_UNDEFINED" + "MsmKey" = "8:_7E2EA4631FEA4004B5A496488E91D91B" + "OwnerKey" = "8:_EC70CEDC42CD4B468A8008C772D58DAC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C8EF717B27B6D2E2D7204347C28D8409" - "OwnerKey" = "8:_386AB9B453194B69A0AD764EF06258EE" + "MsmKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C9A40EECCFF7488B83A5E7F21420327B" - "OwnerKey" = "8:_386AB9B453194B69A0AD764EF06258EE" + "MsmKey" = "8:_C8EF717B27B6D2E2D7204347C28D8409" + "OwnerKey" = "8:_EC70CEDC42CD4B468A8008C772D58DAC" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_C9A40EECCFF7488B83A5E7F21420327B" - "OwnerKey" = "8:_AA0E03B004294FB6A2A650251AC616A3" + "MsmKey" = "8:_EC70CEDC42CD4B468A8008C772D58DAC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } } @@ -188,13 +188,13 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:comIvy" - "ProductCode" = "8:{3DED3C78-F4B2-4A00-943C-DF7D389E3DE3}" - "PackageCode" = "8:{31107A1B-F4D8-4B40-A876-3055F4B20FFE}" + "ProductCode" = "8:{C6AA7F33-7453-417E-ADDC-E7A0E16F6956}" + "PackageCode" = "8:{4122B08A-1DDF-42F0-9DFE-F26C2393CE24}" "UpgradeCode" = "8:{38FA115C-CED5-491F-AF2D-C26B035D114D}" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:FALSE" "DetectNewerInstalledVersion" = "11:TRUE" - "ProductVersion" = "8:1.2.0" + "ProductVersion" = "8:1.3.0" "Manufacturer" = "8:CENA PII" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" @@ -686,11 +686,11 @@ } "MergeModule" { - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_72056A4E49A84B97947CFF77C76387EA" + "{35A69C6E-5BA4-440D-803D-762B59A45393}:_1447414B7EE3459CA5494709C46A8C05" { "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" + "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" "Properties" { } @@ -700,11 +700,11 @@ "Feature" = "8:" "IsolateTo" = "8:" } - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_C9A40EECCFF7488B83A5E7F21420327B" + "{35A69C6E-5BA4-440D-803D-762B59A45393}:_7E2EA4631FEA4004B5A496488E91D91B" { "UseDynamicProperties" = "11:TRUE" "IsDependency" = "11:TRUE" - "SourcePath" = "8:vc_user_crt71_rtl_x86_---.msm" + "SourcePath" = "8:vc_user_stl71_rtl_x86_---.msm" "Properties" { } @@ -717,7 +717,7 @@ } "ProjectOutput" { - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_19FB70C8F6D64310B906EE12158D6D1A" + "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_4EF66E5AAAE140E89865D76773CCD4D6" { "SourcePath" = "8:" "TargetName" = "8:" @@ -745,9 +745,9 @@ { } } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_386AB9B453194B69A0AD764EF06258EE" + "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_AA0E03B004294FB6A2A650251AC616A3" { - "SourcePath" = "8:..\\..\\Ivy\\Release\\Ivy.dll" + "SourcePath" = "8:..\\Release\\comIvy.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_19810136D0DB43A685CAD4C802A4C6F2" @@ -764,18 +764,18 @@ "Exclude" = "11:FALSE" "IsDependency" = "11:FALSE" "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" + "ProjectOutputGroupRegister" = "3:4" "OutputConfiguration" = "8:" "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{9818D652-CC05-463E-880D-AFCA2C7BFABE}" + "OutputProjectGuid" = "8:{561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}" "ShowKeyOutput" = "11:TRUE" "ExcludeFilters" { } } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_AA0E03B004294FB6A2A650251AC616A3" + "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_EC70CEDC42CD4B468A8008C772D58DAC" { - "SourcePath" = "8:..\\Release\\comIvy.dll" + "SourcePath" = "8:..\\..\\Ivy\\Release\\Ivy.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_19810136D0DB43A685CAD4C802A4C6F2" @@ -792,10 +792,10 @@ "Exclude" = "11:FALSE" "IsDependency" = "11:FALSE" "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:4" + "ProjectOutputGroupRegister" = "3:1" "OutputConfiguration" = "8:" "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}" + "OutputProjectGuid" = "8:{9818D652-CC05-463E-880D-AFCA2C7BFABE}" "ShowKeyOutput" = "11:TRUE" "ExcludeFilters" { -- cgit v1.1 From 689f976bc40d5907c65672ca86d58dcc913f6345 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:13 +0000 Subject: Utilisateur : Fcolin Date : 10/02/04 Heure : 17:44 Créé Commentaire: (vss 1) --- comIvy/Install/Install.vdproj.vspscc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 comIvy/Install/Install.vdproj.vspscc (limited to 'comIvy') diff --git a/comIvy/Install/Install.vdproj.vspscc b/comIvy/Install/Install.vdproj.vspscc new file mode 100644 index 0000000..ed6277a --- /dev/null +++ b/comIvy/Install/Install.vdproj.vspscc @@ -0,0 +1,10 @@ +"" +{ +"FILE_VERSION" = "9237" +"ENLISTMENT_CHOICE" = "NEVER" +"PROJECT_FILE_RELATIVE_PATH" = "relative:comIvy\\Install" +"NUMBER_OF_EXCLUDED_FILES" = "0" +"ORIGINAL_PROJECT_FILE_PATH" = "" +"NUMBER_OF_NESTED_PROJECTS" = "0" +"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER" +} -- cgit v1.1 From e06fa079d2c72f4a08bb11d9be7ec20058007cb4 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:15 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/ReadMe.txt | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 comIvy/ReadMe.txt (limited to 'comIvy') diff --git a/comIvy/ReadMe.txt b/comIvy/ReadMe.txt new file mode 100644 index 0000000..bb83e93 --- /dev/null +++ b/comIvy/ReadMe.txt @@ -0,0 +1,64 @@ +======================================================================== + BIBLIOTHÈQUE ATL : vue d'ensemble du projet comIvy +======================================================================== + +AppWizard a créé ce projet comIvy pour vous afin que vous l'utilisiez comme point de départ pour l'écriture +de votre DLL. +Ce projet est implémenté avec des attributs Visual C++. + +Ce fichier contient un résumé du contenu de chacun des fichiers qui +constituent votre projet. + +comIvy.vcproj + Il s'agit du fichier projet principal pour les projets VC++ générés à l'aide d'un Assistant Application. + Il contient les informations sur la version de Visual C++ qui a généré le fichier et + des informations sur les plates-formes, configurations et fonctionnalités du projet sélectionnées avec + l'Assistant Application. + +_comIvy.idl + Ce fichier sera généré par le compilateur lorsque le projet est généré. Il contiendra les définitions IDL + de la bibliothèque de types, les interfaces et les co-classes définies dans votre projet. + Ce fichier sera traité par le compilateur MIDL pour générer : + les définitions d'interface C++ et les déclarations GUID (_comIvy.h) + Définitions GUID (_comIvy_i.c) + Une bibliothèque de types (_comIvy.tlb) + Code de marshaling (_comIvy_p.c et dlldata.c) +comIvy.cpp + Ce fichier contient la table d'objets et l'implémentation des exportations de votre DLL. +comIvy.rc + Il s'agit de la liste de toutes les ressources Microsoft Windows que le + programme utilise. + +comIvy.def + Ce fichier de définition de module fournit à l'éditeur de liens des informations sur les exportations + requises par votre DLL. Il contient les exportations pour : + DllGetClassObject + DllCanUnloadNow + GetProxyDllInfo + DllRegisterServer + DllUnregisterServer + +///////////////////////////////////////////////////////////////////////////// +Autres fichiers standard : + +StdAfx.h, StdAfx.cpp + Ces fichiers sont utilisés pour générer un fichier d'en-tête précompilé (PCH) + nommé comIvy.pch et un fichier de type précompilé nommé StdAfx.obj. + +Resource.h + Il s'agit du fichier d'en-tête standard qui définit les ID de ressources. + +///////////////////////////////////////////////////////////////////////////// +Fichier de définition de module et projet de DLL proxy/stub : + +comIvyps.vcproj + Ce fichier est le fichier projet pour la génération d'une DLL proxy/stub DLL si nécessaire. + Le fichier IDL du projet principal doit contenir au moins une interface et vous devez + compiler en premier le fichier IDL avant de générer la DLL proxy/stub. Ce processus génère + dlldata.c, comIvy_i.c et comIvy_p.c qui sont requis + pour générer la DLL proxy/stub. + +comIvyps.def + Ce fichier de définition de module fournit à l'éditeur de liens les informations sur les exportations + requises par proxy/stub. +///////////////////////////////////////////////////////////////////////////// -- cgit v1.1 From 3006d508ed31f769ab7d39712d97f0dbaea0d47c Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:17 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/Resource.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 comIvy/Resource.h (limited to 'comIvy') diff --git a/comIvy/Resource.h b/comIvy/Resource.h new file mode 100644 index 0000000..4f1d1cb --- /dev/null +++ b/comIvy/Resource.h @@ -0,0 +1,18 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by comIvy.rc +// + +#define IDS_PROJNAME 100 +#define IDR_COMIVY 101 + +// Valeurs par défaut suivantes des nouveaux objets +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 201 +#define _APS_NEXT_COMMAND_VALUE 32768 +#define _APS_NEXT_CONTROL_VALUE 201 +#define _APS_NEXT_SYMED_VALUE 102 +#endif +#endif -- cgit v1.1 From afc20c1905f2c5075c5128a534bda408daf589d3 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:19 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/TestIvy.doc | Bin 0 -> 47616 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 comIvy/TestIvy.doc (limited to 'comIvy') diff --git a/comIvy/TestIvy.doc b/comIvy/TestIvy.doc new file mode 100644 index 0000000..a731e3a Binary files /dev/null and b/comIvy/TestIvy.doc differ -- cgit v1.1 From 3f17483ab3afe26616134ff5c7f577dd1637e712 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:21 +0000 Subject: Utilisateur : Fcolin Date : 18/04/03 Heure : 15:43 Archivé dans $/Bus/comIvy Commentaire: ajout GetDomain (vss 2) --- comIvy/TestIvy.doc | Bin 47616 -> 44544 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'comIvy') diff --git a/comIvy/TestIvy.doc b/comIvy/TestIvy.doc index a731e3a..4af5a12 100644 Binary files a/comIvy/TestIvy.doc and b/comIvy/TestIvy.doc differ -- cgit v1.1 From e2c203d741e07b3dab1660ded00d7b17b59ddd16 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:22 +0000 Subject: Utilisateur : Fcolin Date : 7/06/04 Heure : 16:49 Archivé dans $/Bus/comIvy Commentaire: (vss 3) --- comIvy/TestIvy.doc | Bin 44544 -> 47616 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'comIvy') diff --git a/comIvy/TestIvy.doc b/comIvy/TestIvy.doc index 4af5a12..7bec85a 100644 Binary files a/comIvy/TestIvy.doc and b/comIvy/TestIvy.doc differ -- cgit v1.1 From a7f6fb235546ee24c8d2ebc76ad2f944f7ca065e Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:25 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/comIvy.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 comIvy/comIvy.cpp (limited to 'comIvy') diff --git a/comIvy/comIvy.cpp b/comIvy/comIvy.cpp new file mode 100644 index 0000000..1c24f87 --- /dev/null +++ b/comIvy/comIvy.cpp @@ -0,0 +1,10 @@ +// comIvy.cpp : implémentation des exportations de DLL. + +#include "stdafx.h" +#include "resource.h" + +// L'attribut du module a provoqué l'implémentation automatique de DllMain, DllRegisterServer et DllUnregisterServer +[ module(dll, uuid = "{E1FEC2E8-66AC-494B-B69B-851D289BD931}", + name = "comIvy", + helpstring = "Bibliothèque de types comIvy 1.0", + resource_name = "IDR_COMIVY") ]; -- cgit v1.1 From 03869dbf5673b92b0140ebe69beb0bacba21506e Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:26 +0000 Subject: Utilisateur : Fcolin Date : 18/04/03 Heure : 15:43 Archivé dans $/Bus/comIvy Commentaire: ajout GetDomain (vss 2) --- comIvy/comIvy.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'comIvy') diff --git a/comIvy/comIvy.cpp b/comIvy/comIvy.cpp index 1c24f87..e2b9c93 100644 --- a/comIvy/comIvy.cpp +++ b/comIvy/comIvy.cpp @@ -4,7 +4,7 @@ #include "resource.h" // L'attribut du module a provoqué l'implémentation automatique de DllMain, DllRegisterServer et DllUnregisterServer -[ module(dll, uuid = "{E1FEC2E8-66AC-494B-B69B-851D289BD931}", +[ module(dll, version=2.0, uuid = "{E1FEC2E8-66AC-494B-B69B-851D289BD931}", name = "comIvy", - helpstring = "Bibliothèque de types comIvy 1.0", + helpstring = "Bibliothèque de types comIvy", resource_name = "IDR_COMIVY") ]; -- cgit v1.1 From c61976ebf37e05f8001ae7d091a846e5f57200bf Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:28 +0000 Subject: Utilisateur : Fcolin Date : 18/04/03 Heure : 15:46 Archivé dans $/Bus/comIvy Commentaire: (vss 3) --- comIvy/comIvy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'comIvy') diff --git a/comIvy/comIvy.cpp b/comIvy/comIvy.cpp index e2b9c93..209693b 100644 --- a/comIvy/comIvy.cpp +++ b/comIvy/comIvy.cpp @@ -4,7 +4,7 @@ #include "resource.h" // L'attribut du module a provoqué l'implémentation automatique de DllMain, DllRegisterServer et DllUnregisterServer -[ module(dll, version=2.0, uuid = "{E1FEC2E8-66AC-494B-B69B-851D289BD931}", +[ module(dll, uuid = "{E1FEC2E8-66AC-494B-B69B-851D289BD931}", name = "comIvy", helpstring = "Bibliothèque de types comIvy", resource_name = "IDR_COMIVY") ]; -- cgit v1.1 From 2ca078982b324ea7f4a2129a9f1f42c85ca8b698 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:31 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/comIvy.rc | 120 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 comIvy/comIvy.rc (limited to 'comIvy') diff --git a/comIvy/comIvy.rc b/comIvy/comIvy.rc new file mode 100644 index 0000000..e33dae4 --- /dev/null +++ b/comIvy/comIvy.rc @@ -0,0 +1,120 @@ +// Microsoft Visual C++ generated resource script. +// +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// Français (France) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA) +#ifdef _WIN32 +LANGUAGE LANG_FRENCH, SUBLANG_FRENCH +#pragma code_page(1252) +#endif //_WIN32 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 1,0,0,1 + PRODUCTVERSION 1,0,0,1 + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040c04b0" + BEGIN + VALUE "CompanyName", "CENA" + VALUE "FileDescription", "Composant d'interface a Ivy" + VALUE "FileVersion", "1.0.0.1" + VALUE "InternalName", "comIvy.dll" + VALUE "LegalCopyright", "TODO : (c) . Tous droits réservés." + VALUE "OriginalFilename", "comIvy.dll" + VALUE "ProductName", "comIvy" + VALUE "ProductVersion", "1.0.0.1" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x40c, 1200 + END +END + + +///////////////////////////////////////////////////////////////////////////// +// +// REGISTRY +// + +IDR_COMIVY REGISTRY "comIvy.rgs" + +///////////////////////////////////////////////////////////////////////////// +// +// String Table +// + +STRINGTABLE +BEGIN + IDS_PROJNAME "comIvy" +END + +#endif // Français (France) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + -- cgit v1.1 From f36c2b29304fd2ec971af7e78a287b255504e389 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:32 +0000 Subject: Utilisateur : Fcolin Date : 18/04/03 Heure : 15:43 Archivé dans $/Bus/comIvy Commentaire: ajout GetDomain (vss 2) --- comIvy/comIvy.rc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'comIvy') diff --git a/comIvy/comIvy.rc b/comIvy/comIvy.rc index e33dae4..0af388a 100644 --- a/comIvy/comIvy.rc +++ b/comIvy/comIvy.rc @@ -53,8 +53,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,1 - PRODUCTVERSION 1,0,0,1 + FILEVERSION 1,0,0,2 + PRODUCTVERSION 1,0,0,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -71,12 +71,12 @@ BEGIN BEGIN VALUE "CompanyName", "CENA" VALUE "FileDescription", "Composant d'interface a Ivy" - VALUE "FileVersion", "1.0.0.1" + VALUE "FileVersion", "1.0.0.2" VALUE "InternalName", "comIvy.dll" - VALUE "LegalCopyright", "TODO : (c) . Tous droits réservés." + VALUE "LegalCopyright", "(c) . Tous droits réservés." VALUE "OriginalFilename", "comIvy.dll" VALUE "ProductName", "comIvy" - VALUE "ProductVersion", "1.0.0.1" + VALUE "ProductVersion", "1.0.0.2" END END BLOCK "VarFileInfo" -- cgit v1.1 From 5de018ce216959848c5beb99c2a703cb57a0b165 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:35 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/comIvy.rgs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 comIvy/comIvy.rgs (limited to 'comIvy') diff --git a/comIvy/comIvy.rgs b/comIvy/comIvy.rgs new file mode 100644 index 0000000..893f5b0 --- /dev/null +++ b/comIvy/comIvy.rgs @@ -0,0 +1,11 @@ +HKCR +{ + NoRemove AppID + { + '%APPID%' = s 'comIvy' + 'comIvy.DLL' + { + val AppID = s '%APPID%' + } + } +} -- cgit v1.1 From 5bed1e3707fa87bdbf682c0271f3ba288114f783 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:37 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 15:27 Créé Commentaire: (vss 1) --- comIvy/comIvy.sln | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 comIvy/comIvy.sln (limited to 'comIvy') diff --git a/comIvy/comIvy.sln b/comIvy/comIvy.sln new file mode 100644 index 0000000..3862005 --- /dev/null +++ b/comIvy/comIvy.sln @@ -0,0 +1,54 @@ +Microsoft Visual Studio Solution File, Format Version 7.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "comIvy", "comIvy.vcproj", "{561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "comIvyPS", "comIvyPS.vcproj", "{2518DFBB-6692-4F0C-8020-1DEEC95A5EC1}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Ivy", "..\Ivy\Ivy.vcproj", "{9818D652-CC05-463E-880D-AFCA2C7BFABE}" +EndProject +Global + GlobalSection(SourceCodeControl) = preSolution + SccNumberOfProjects = 4 + SccProjectUniqueName0 = ..\\Ivy\\Ivy.vcproj + SccProjectName0 = \u0022$/Bus/Ivy\u0022,\u0020QPEAAAAA + SccLocalPath0 = ..\\Ivy + CanCheckoutShared = false + SccProjectUniqueName1 = comIvy.vcproj + SccLocalPath1 = .. + CanCheckoutShared = false + SccProjectFilePathRelativizedFromConnection1 = comIvy\\ + SccProjectName2 = \u0022$/Bus\u0022,\u0020ZOBAAAAA + SccLocalPath2 = .. + SccProvider2 = MSSCCI:Microsoft\u0020Visual\u0020SourceSafe + CanCheckoutShared = false + SccProjectFilePathRelativizedFromConnection2 = comIvy\\ + SolutionUniqueID = {0D33DAE6-8F43-4549-9070-01A6DB7794D4} + SccProjectUniqueName3 = comIvyPS.vcproj + SccLocalPath3 = .. + CanCheckoutShared = false + SccProjectFilePathRelativizedFromConnection3 = comIvy\\ + EndGlobalSection + GlobalSection(SolutionConfiguration) = preSolution + ConfigName.0 = Debug + ConfigName.1 = Release + EndGlobalSection + GlobalSection(ProjectDependencies) = postSolution + {561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}.0 = {9818D652-CC05-463E-880D-AFCA2C7BFABE} + {2518DFBB-6692-4F0C-8020-1DEEC95A5EC1}.0 = {561E32B8-AF2E-4BA4-8D1D-159CC71E2C90} + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}.Debug.ActiveCfg = Debug|Win32 + {561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}.Debug.Build.0 = Debug|Win32 + {561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}.Release.ActiveCfg = Release|Win32 + {561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}.Release.Build.0 = Release|Win32 + {2518DFBB-6692-4F0C-8020-1DEEC95A5EC1}.Debug.ActiveCfg = Debug|Win32 + {2518DFBB-6692-4F0C-8020-1DEEC95A5EC1}.Release.ActiveCfg = Release|Win32 + {9818D652-CC05-463E-880D-AFCA2C7BFABE}.Debug.ActiveCfg = Debug|Win32 + {9818D652-CC05-463E-880D-AFCA2C7BFABE}.Debug.Build.0 = Debug|Win32 + {9818D652-CC05-463E-880D-AFCA2C7BFABE}.Release.ActiveCfg = Release|Win32 + {9818D652-CC05-463E-880D-AFCA2C7BFABE}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal -- cgit v1.1 From bd629d1392d3a55af10c5e4e10eb3aecfd5faa89 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:39 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:54 Créé Commentaire: (vss 1) --- comIvy/comIvy.vcproj | 210 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 210 insertions(+) create mode 100644 comIvy/comIvy.vcproj (limited to 'comIvy') diff --git a/comIvy/comIvy.vcproj b/comIvy/comIvy.vcproj new file mode 100644 index 0000000..b6c060e --- /dev/null +++ b/comIvy/comIvy.vcproj @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.1 From 0effcd8ef0eba3533416a6507cbe381e64942c38 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:41 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 12:09 Archivé dans $/Bus/comIvy Commentaire: (vss 2) --- comIvy/comIvy.vcproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'comIvy') diff --git a/comIvy/comIvy.vcproj b/comIvy/comIvy.vcproj index b6c060e..e9d7467 100644 --- a/comIvy/comIvy.vcproj +++ b/comIvy/comIvy.vcproj @@ -16,7 +16,7 @@ + DebugInformationFormat="4" + AdditionalOptions=""/> + TargetMachine="1" + SuppressStartupBanner="1" + AdditionalOptions=""/> + DebugInformationFormat="3" + AdditionalOptions=""/> + TargetMachine="1" + SuppressStartupBanner="1" + AdditionalOptions=""/> - + RelativePath="Bus.cpp"/> - + RelativePath="Expression.cpp"/> - + RelativePath="comIvy.cpp"/> + UsePrecompiledHeader="1" + AdditionalOptions=""/> + UsePrecompiledHeader="1" + AdditionalOptions=""/> @@ -171,40 +177,30 @@ Name="Header Files" Filter="h;hpp;hxx;hm;inl;inc"> - + RelativePath="Bus.h"/> - + RelativePath="Expression.h"/> - + RelativePath="Resource.h"/> - + RelativePath="stdafx.h"/> - + RelativePath="comIvy.rc"/> - + RelativePath="comIvy.rgs"/> - + RelativePath="ReadMe.txt"/> - + DeploymentContent="TRUE"/> - + DeploymentContent="TRUE"/> - - + -- cgit v1.1 From 3f0d7df8d680c53ec775fcac708104e7bf605a0b Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:44 +0000 Subject: Utilisateur : Fcolin Date : 23/01/04 Heure : 14:18 Archivé dans $/Bus/comIvy Commentaire: (vss 4) --- comIvy/comIvy.vcproj | 92 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 61 insertions(+), 31 deletions(-) (limited to 'comIvy') diff --git a/comIvy/comIvy.vcproj b/comIvy/comIvy.vcproj index 2144eb1..1d51170 100644 --- a/comIvy/comIvy.vcproj +++ b/comIvy/comIvy.vcproj @@ -1,7 +1,7 @@ - + + DebugInformationFormat="4"/> + TargetMachine="1"/> + + + + DebugInformationFormat="3"/> + TargetMachine="1"/> + + + + + + + RelativePath="Bus.cpp"> + + RelativePath="comIvy.cpp"> + + RelativePath="Expression.cpp"> + + AdditionalOptions="" + UsePrecompiledHeader="1"/> + AdditionalOptions="" + UsePrecompiledHeader="1"/> @@ -177,30 +197,40 @@ Name="Header Files" Filter="h;hpp;hxx;hm;inl;inc"> + RelativePath="Bus.h"> + + RelativePath="Expression.h"> + + RelativePath="Resource.h"> + + RelativePath="stdafx.h"> + + RelativePath="comIvy.rc"> + + RelativePath="comIvy.rgs"> + + RelativePath="ivyscript.vbs" + DeploymentContent="TRUE"> + + RelativePath="ReadMe.txt"> + + RelativePath="TestIvy.doc" + DeploymentContent="TRUE"> + - + + -- cgit v1.1 From 434a8afa552f34d43004d8f4da6cac8d20d3e517 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:47 +0000 Subject: Utilisateur : Fcolin Date : 7/06/04 Heure : 10:03 Archivé dans $/Bus/comIvy Commentaire: (vss 5) --- comIvy/comIvy.vcproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'comIvy') diff --git a/comIvy/comIvy.vcproj b/comIvy/comIvy.vcproj index 1d51170..895efff 100644 --- a/comIvy/comIvy.vcproj +++ b/comIvy/comIvy.vcproj @@ -86,7 +86,7 @@ -- cgit v1.1 From 15cb508a2b736277db25baddf6b4426a0bb9b155 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:48 +0000 Subject: Utilisateur : Fcolin Date : 4/01/05 Heure : 14:48 Archivé dans $/Bus/comIvy Commentaire: (vss 6) --- comIvy/comIvy.vcproj | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to 'comIvy') diff --git a/comIvy/comIvy.vcproj b/comIvy/comIvy.vcproj index 895efff..809599d 100644 --- a/comIvy/comIvy.vcproj +++ b/comIvy/comIvy.vcproj @@ -4,6 +4,7 @@ Version="7.10" Name="comIvy" ProjectGUID="{561E32B8-AF2E-4BA4-8D1D-159CC71E2C90}" + RootNamespace="comIvy" SccProjectName=""$/Bus", ZOBAAAAA" SccAuxPath="" SccLocalPath=".." @@ -36,12 +37,14 @@ Detect64BitPortabilityProblems="TRUE" DebugInformationFormat="4"/> + Name="VCCustomBuildTool" + Description="Copying dll's" + CommandLine="copy "$(TargetPath)" "C:\users\fcolin\Program Files\$(OutDir)"" + Outputs="C:\users\fcolin\Program Files\$(OutDir)\$(TargetName).dll"/> + CommandLine="regsvr32 /s /c "C:\users\fcolin\Program Files\$(OutDir)\$(TargetName).dll""/> + Name="VCCustomBuildTool" + Description="Copying dll's" + CommandLine="copy "$(TargetPath)" "C:\users\fcolin\Program Files\$(OutDir)"" + Outputs="C:\users\fcolin\Program Files\$(OutDir)\$(TargetName).dll"/> + CommandLine="regsvr32 /s /c "C:\users\fcolin\Program Files\$(OutDir)\$(TargetName).dll""/> + CommandLine="copy "$(TargetPath)" "C:\users\fcolin\Program Files\$(OutDir)" +"/> +" + Outputs=""C:\users\fcolin\Program Files\$(OutDir)\$(TargetFileName)""/> 22 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 comIvy/comIvy.vsscc (limited to 'comIvy') diff --git a/comIvy/comIvy.vsscc b/comIvy/comIvy.vsscc new file mode 100644 index 0000000..df0db91 Binary files /dev/null and b/comIvy/comIvy.vsscc differ -- cgit v1.1 From 8165b9594f93dc58b8aa81e3360b06c71708cefc Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:14:59 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 15:27 Créé Commentaire: (vss 1) --- comIvy/comIvy.vssscc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 comIvy/comIvy.vssscc (limited to 'comIvy') diff --git a/comIvy/comIvy.vssscc b/comIvy/comIvy.vssscc new file mode 100644 index 0000000..fd837c3 --- /dev/null +++ b/comIvy/comIvy.vssscc @@ -0,0 +1,10 @@ +"" +{ +"FILE_VERSION" = "9237" +"ENLISTMENT_CHOICE" = "NEVER" +"PROJECT_FILE_RELATIVE_PATH" = "relative:comIvy" +"NUMBER_OF_EXCLUDED_FILES" = "0" +"ORIGINAL_PROJECT_FILE_PATH" = "" +"NUMBER_OF_NESTED_PROJECTS" = "0" +"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" +} -- cgit v1.1 From ad7c062a79500bbd7d217c748804c4db22f87dd3 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:15:01 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 15:27 Créé Commentaire: (vss 1) --- comIvy/comIvyPS.vcproj | 121 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 comIvy/comIvyPS.vcproj (limited to 'comIvy') diff --git a/comIvy/comIvyPS.vcproj b/comIvy/comIvyPS.vcproj new file mode 100644 index 0000000..e0695a6 --- /dev/null +++ b/comIvy/comIvyPS.vcproj @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.1 From c363c7fd9ae17896086e2af0dfb6decaf2c281d0 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:15:03 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 15:27 Créé Commentaire: (vss 1) --- comIvy/comIvyPS.vcproj.vspscc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 comIvy/comIvyPS.vcproj.vspscc (limited to 'comIvy') diff --git a/comIvy/comIvyPS.vcproj.vspscc b/comIvy/comIvyPS.vcproj.vspscc new file mode 100644 index 0000000..fd837c3 --- /dev/null +++ b/comIvy/comIvyPS.vcproj.vspscc @@ -0,0 +1,10 @@ +"" +{ +"FILE_VERSION" = "9237" +"ENLISTMENT_CHOICE" = "NEVER" +"PROJECT_FILE_RELATIVE_PATH" = "relative:comIvy" +"NUMBER_OF_EXCLUDED_FILES" = "0" +"ORIGINAL_PROJECT_FILE_PATH" = "" +"NUMBER_OF_NESTED_PROJECTS" = "0" +"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" +} -- cgit v1.1 From e454d7cb2c6eac2c632ada8b494ef895a760e6b1 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:15:05 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 15:27 Créé Commentaire: (vss 1) --- comIvy/comIvyps.def | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 comIvy/comIvyps.def (limited to 'comIvy') diff --git a/comIvy/comIvyps.def b/comIvy/comIvyps.def new file mode 100644 index 0000000..9d3932c --- /dev/null +++ b/comIvy/comIvyps.def @@ -0,0 +1,9 @@ + +LIBRARY "comIvyPS" + +EXPORTS + DllGetClassObject PRIVATE + DllCanUnloadNow PRIVATE + GetProxyDllInfo PRIVATE + DllRegisterServer PRIVATE + DllUnregisterServer PRIVATE -- cgit v1.1 From 56bcba056a8f7463f6fdd24a10b871ac23d72e5d Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:15:07 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/ivyscript.vbs | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 comIvy/ivyscript.vbs (limited to 'comIvy') diff --git a/comIvy/ivyscript.vbs b/comIvy/ivyscript.vbs new file mode 100644 index 0000000..be16094 --- /dev/null +++ b/comIvy/ivyscript.vbs @@ -0,0 +1,73 @@ +'-------------------------------------------- +' IVYscript.vbs +'-------------------------------------------- +Option Explicit +'On Error Resume Next + +dim bus,all_message,pp,count + + +set bus = WScript.CreateObject("comIvy.Bus", "bus_") + +'WScript.Echo " bus type " & TypeName(bus) + +bus.Create "IvyScript", "IvyScript Ready" + +set all_message= bus.Bind( "(.*)") + + +WScript.ConnectObject all_message, "all_" + +set pp= bus.Bind( "^PPilot(.*)") + +'WScript.Echo " all type " & TypeName(all) + + +WScript.ConnectObject pp, "pp_" + +bus.Start "" + +WScript.Sleep 2000 +count= bus.Send( "ClockStart" ) +WScript.Echo "Sent " & count +WScript.Sleep 25000 + + +all_message.Unbind() +pp.Unbind() + +'-------------------------------------------- +sub bus_ApplicationConnected(name) + WScript.Echo "Application Connected " & name +end sub +'-------------------------------------------- +'-------------------------------------------- +sub bus_ApplicationDisconnected(name) + WScript.Echo "Application Disconnect " & name +end sub +'-------------------------------------------- +'-------------------------------------------- +sub all_Received(name,args) + dim i,argc,argv + argc = UBound(args) - LBound(args) + 1 + argv = " args: " + for i = LBound(args) to UBound(args) + argv = argv & args(i) & "," + next + WScript.Echo "Receive message argc=" & Cstr(argc ) & argv +end sub +'-------------------------------------------- +'-------------------------------------------- +sub pp_Received(name,args) + dim i,argc,argv + argc = UBound(args) - LBound(args) + 1 + argv = " args: " + for i = LBound(args) to UBound(args) + argv = argv & args(i) & "," + next + WScript.Echo "Receive PPilot message argc=" & Cstr(argc ) & argv +end sub +'-------------------------------------------- +sub Received(args) + WScript.Echo "Unknown Receive message argc=" & Cstr(args)& "->" & args(0) +end sub \ No newline at end of file -- cgit v1.1 From 558785ec45f86c748800e443741e513ffa3ca0ac Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:15:08 +0000 Subject: Utilisateur : Fcolin Date : 18/04/03 Heure : 15:43 Archivé dans $/Bus/comIvy Commentaire: ajout GetDomain (vss 2) --- comIvy/ivyscript.vbs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'comIvy') diff --git a/comIvy/ivyscript.vbs b/comIvy/ivyscript.vbs index be16094..3d81256 100644 --- a/comIvy/ivyscript.vbs +++ b/comIvy/ivyscript.vbs @@ -9,9 +9,10 @@ dim bus,all_message,pp,count set bus = WScript.CreateObject("comIvy.Bus", "bus_") -'WScript.Echo " bus type " & TypeName(bus) +WScript.Echo " bus type " & TypeName(bus) bus.Create "IvyScript", "IvyScript Ready" +WScript.Echo " bus domain " & bus.GetDomain() set all_message= bus.Bind( "(.*)") @@ -49,6 +50,8 @@ end sub '-------------------------------------------- sub all_Received(name,args) dim i,argc,argv + WScript.Echo " args type " & TypeName(args) + argc = UBound(args) - LBound(args) + 1 argv = " args: " for i = LBound(args) to UBound(args) -- cgit v1.1 From e702a1b7036e0c25a93e9761f4538da6224b8f31 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:15:10 +0000 Subject: Utilisateur : Fcolin Date : 7/06/04 Heure : 10:56 Archivé dans $/Bus/comIvy Commentaire: (vss 3) --- comIvy/ivyscript.vbs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'comIvy') diff --git a/comIvy/ivyscript.vbs b/comIvy/ivyscript.vbs index 3d81256..a8e6527 100644 --- a/comIvy/ivyscript.vbs +++ b/comIvy/ivyscript.vbs @@ -33,8 +33,11 @@ count= bus.Send( "ClockStart" ) WScript.Echo "Sent " & count WScript.Sleep 25000 +WScript.Echo " Unbind Message " & TypeName(all_message) all_message.Unbind() + +WScript.Echo " Unbind Message " & TypeName(all_message) pp.Unbind() '-------------------------------------------- -- cgit v1.1 From 1931a74f1e727d974a5a12d3ee6661cd9b6093b7 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:15:12 +0000 Subject: Utilisateur : Fcolin Date : 4/01/05 Heure : 14:48 Archivé dans $/Bus/comIvy Commentaire: (vss 4) --- comIvy/ivyscript.vbs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'comIvy') diff --git a/comIvy/ivyscript.vbs b/comIvy/ivyscript.vbs index a8e6527..f8efd5a 100644 --- a/comIvy/ivyscript.vbs +++ b/comIvy/ivyscript.vbs @@ -40,6 +40,9 @@ all_message.Unbind() WScript.Echo " Unbind Message " & TypeName(all_message) pp.Unbind() +WScript.Echo " End Ivy Script Test " & TypeName(bus) + +'bus.Delete() '-------------------------------------------- sub bus_ApplicationConnected(name) WScript.Echo "Application Connected " & name -- cgit v1.1 From 4284d03f4a4a9e9e557a1a5c8e0a48666b1a7fb2 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:15:15 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/stdafx.cpp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 comIvy/stdafx.cpp (limited to 'comIvy') diff --git a/comIvy/stdafx.cpp b/comIvy/stdafx.cpp new file mode 100644 index 0000000..9fae7b7 --- /dev/null +++ b/comIvy/stdafx.cpp @@ -0,0 +1,5 @@ +// stdafx.cpp : fichier source incluant simplement les fichiers Include standard +// comIvy.pch représente l'en-tête précompilé +// stdafx.obj contient les informations de type précompilées + +#include "stdafx.h" -- cgit v1.1 From 028864c404717b3c855b7cc0df8b63ffb05fccd2 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:15:17 +0000 Subject: Utilisateur : Fcolin Date : 3/10/02 Heure : 10:55 Créé Commentaire: (vss 1) --- comIvy/stdafx.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 comIvy/stdafx.h (limited to 'comIvy') diff --git a/comIvy/stdafx.h b/comIvy/stdafx.h new file mode 100644 index 0000000..756ac91 --- /dev/null +++ b/comIvy/stdafx.h @@ -0,0 +1,45 @@ +// stdafx.h : Fichier Include pour les fichiers Include système standard, +// ou les fichiers Include spécifiques aux projets qui sont utilisés fréquemment, +// et sont rarement modifiés + +#pragma once + +#ifndef STRICT +#define STRICT +#endif + +// Modifiez les définitions suivantes si vous devez cibler une plate-forme avant celles spécifiées ci-dessous. +// Reportez-vous à MSDN pour obtenir les dernières informations sur les valeurs correspondantes pour les différentes plates-formes. +#ifndef WINVER // Autorise l'utilisation des fonctionnalités spécifiques à Windows 95 et Windows NT 4 ou version ultérieure. +#define WINVER 0x0400 // Attribuez la valeur appropriée à cet élément pour cibler Windows 98 et Windows 2000 ou version ultérieure. +#endif + +#ifndef _WIN32_WINNT // Autorise l'utilisation des fonctionnalités spécifiques à Windows NT 4 ou version ultérieure. +#define _WIN32_WINNT 0x0400 // Attribuez la valeur appropriée à cet élément pour cibler Windows 2000 ou version ultérieure. +#endif + +#ifndef _WIN32_WINDOWS // Autorise l'utilisation des fonctionnalités spécifiques à Windows 98 ou version ultérieure. +#define _WIN32_WINDOWS 0x0410 // Attribuez la valeur appropriée à cet élément pour cibler Windows Me ou version ultérieure. +#endif + +#ifndef _WIN32_IE // Autorise l'utilisation des fonctionnalités spécifiques à IE 4.0 ou version ultérieure. +#define _WIN32_IE 0x0400 // Attribuez la valeur appropriée à cet élément pour cibler IE 5.0 ou version ultérieure. +#endif + +#define _ATL_APARTMENT_THREADED +#define _ATL_NO_AUTOMATIC_NAMESPACE + +#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // certains constructeurs CString seront explicites + +// désactive le masquage ATL de certains messages d'avertissement courants et souvent ignorés +#define _ATL_ALL_WARNINGS + +#include +#include +#include +#include +#include +#include + + +using namespace ATL; -- cgit v1.1