forked from ayende/rhino-mocks
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk@1437 079b0acf-d9fa-0310-9935-e5ade295c882
- Loading branch information
ayenderahien
committed
Jun 5, 2008
1 parent
8d5a222
commit e38763a
Showing
10 changed files
with
421 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces/AssemblyInfo.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#include "stdafx.h" | ||
|
||
using namespace System; | ||
using namespace System::Reflection; | ||
using namespace System::Runtime::CompilerServices; | ||
using namespace System::Runtime::InteropServices; | ||
using namespace System::Security::Permissions; | ||
|
||
// | ||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
// | ||
[assembly:AssemblyTitleAttribute("RhinoMocksCPPInterfaces")]; | ||
[assembly:AssemblyDescriptionAttribute("")]; | ||
[assembly:AssemblyConfigurationAttribute("")]; | ||
[assembly:AssemblyCompanyAttribute("")]; | ||
[assembly:AssemblyProductAttribute("RhinoMocksCPPInterfaces")]; | ||
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2008")]; | ||
[assembly:AssemblyTrademarkAttribute("")]; | ||
[assembly:AssemblyCultureAttribute("")]; | ||
|
||
// | ||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the value or you can default the Revision and Build Numbers | ||
// by using the '*' as shown below: | ||
|
||
[assembly:AssemblyVersionAttribute("1.0.*")]; | ||
|
||
[assembly:ComVisible(false)]; | ||
|
||
[assembly:CLSCompliantAttribute(true)]; | ||
|
||
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)]; |
31 changes: 31 additions & 0 deletions
31
Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces/ReadMe.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
======================================================================== | ||
DYNAMIC LINK LIBRARY : Rhino.Mocks.CPP.Interfaces Project Overview | ||
======================================================================== | ||
|
||
AppWizard has created this Rhino.Mocks.CPP.Interfaces DLL for you. | ||
|
||
This file contains a summary of what you will find in each of the files that | ||
make up your Rhino.Mocks.CPP.Interfaces application. | ||
|
||
Rhino.Mocks.CPP.Interfaces.vcproj | ||
This is the main project file for VC++ projects generated using an Application Wizard. | ||
It contains information about the version of Visual C++ that generated the file, and | ||
information about the platforms, configurations, and project features selected with the | ||
Application Wizard. | ||
|
||
Rhino.Mocks.CPP.Interfaces.cpp | ||
This is the main DLL source file. | ||
|
||
Rhino.Mocks.CPP.Interfaces.h | ||
This file contains a class declaration. | ||
|
||
AssemblyInfo.cpp | ||
Contains custom attributes for modifying assembly metadata. | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
Other notes: | ||
|
||
AppWizard uses "TODO:" to indicate parts of the source code you | ||
should add to or customize. | ||
|
||
///////////////////////////////////////////////////////////////////////////// |
6 changes: 6 additions & 0 deletions
6
Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// This is the main DLL file. | ||
|
||
#include "stdafx.h" | ||
|
||
#include "Rhino.Mocks.CPP.Interfaces.h" | ||
|
13 changes: 13 additions & 0 deletions
13
Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Rhino.Mocks.CPP.Interfaces.h | ||
|
||
#pragma once | ||
|
||
using namespace System; | ||
|
||
namespace RhinoMocksCPPInterfaces { | ||
|
||
public interface class IHaveMethodWithModOpts | ||
{ | ||
void StartLiveOnSlot(long slotNumber); | ||
}; | ||
} |
253 changes: 253 additions & 0 deletions
253
Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces.vcproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,253 @@ | ||
<?xml version="1.0" encoding="Windows-1252"?> | ||
<VisualStudioProject | ||
ProjectType="Visual C++" | ||
Version="9.00" | ||
Name="Rhino.Mocks.CPP.Interfaces" | ||
ProjectGUID="{BA806046-4CA3-42E7-8792-603C586DD4AA}" | ||
RootNamespace="RhinoMocksCPPInterfaces" | ||
Keyword="ManagedCProj" | ||
TargetFrameworkVersion="196613" | ||
> | ||
<Platforms> | ||
<Platform | ||
Name="Win32" | ||
/> | ||
</Platforms> | ||
<ToolFiles> | ||
</ToolFiles> | ||
<Configurations> | ||
<Configuration | ||
Name="Debug|Win32" | ||
OutputDirectory="$(SolutionDir)$(ConfigurationName)" | ||
IntermediateDirectory="$(ConfigurationName)" | ||
ConfigurationType="2" | ||
CharacterSet="1" | ||
ManagedExtensions="3" | ||
> | ||
<Tool | ||
Name="VCPreBuildEventTool" | ||
/> | ||
<Tool | ||
Name="VCCustomBuildTool" | ||
/> | ||
<Tool | ||
Name="VCXMLDataGeneratorTool" | ||
/> | ||
<Tool | ||
Name="VCWebServiceProxyGeneratorTool" | ||
/> | ||
<Tool | ||
Name="VCMIDLTool" | ||
/> | ||
<Tool | ||
Name="VCCLCompilerTool" | ||
Optimization="0" | ||
PreprocessorDefinitions="WIN32;_DEBUG" | ||
RuntimeLibrary="3" | ||
UsePrecompiledHeader="2" | ||
WarningLevel="3" | ||
DebugInformationFormat="3" | ||
/> | ||
<Tool | ||
Name="VCManagedResourceCompilerTool" | ||
/> | ||
<Tool | ||
Name="VCResourceCompilerTool" | ||
/> | ||
<Tool | ||
Name="VCPreLinkEventTool" | ||
/> | ||
<Tool | ||
Name="VCLinkerTool" | ||
AdditionalDependencies="$(NoInherit)" | ||
LinkIncremental="2" | ||
GenerateDebugInformation="true" | ||
AssemblyDebug="1" | ||
TargetMachine="1" | ||
KeyFile="$(ProjectDir)..\..\..\ayende-open-source.snk" | ||
/> | ||
<Tool | ||
Name="VCALinkTool" | ||
/> | ||
<Tool | ||
Name="VCManifestTool" | ||
/> | ||
<Tool | ||
Name="VCXDCMakeTool" | ||
/> | ||
<Tool | ||
Name="VCBscMakeTool" | ||
/> | ||
<Tool | ||
Name="VCFxCopTool" | ||
/> | ||
<Tool | ||
Name="VCAppVerifierTool" | ||
/> | ||
<Tool | ||
Name="VCPostBuildEventTool" | ||
/> | ||
</Configuration> | ||
<Configuration | ||
Name="Release|Win32" | ||
OutputDirectory="$(SolutionDir)$(ConfigurationName)" | ||
IntermediateDirectory="$(ConfigurationName)" | ||
ConfigurationType="2" | ||
CharacterSet="1" | ||
ManagedExtensions="1" | ||
WholeProgramOptimization="1" | ||
> | ||
<Tool | ||
Name="VCPreBuildEventTool" | ||
/> | ||
<Tool | ||
Name="VCCustomBuildTool" | ||
/> | ||
<Tool | ||
Name="VCXMLDataGeneratorTool" | ||
/> | ||
<Tool | ||
Name="VCWebServiceProxyGeneratorTool" | ||
/> | ||
<Tool | ||
Name="VCMIDLTool" | ||
/> | ||
<Tool | ||
Name="VCCLCompilerTool" | ||
PreprocessorDefinitions="WIN32;NDEBUG" | ||
RuntimeLibrary="2" | ||
UsePrecompiledHeader="2" | ||
WarningLevel="3" | ||
DebugInformationFormat="3" | ||
/> | ||
<Tool | ||
Name="VCManagedResourceCompilerTool" | ||
/> | ||
<Tool | ||
Name="VCResourceCompilerTool" | ||
/> | ||
<Tool | ||
Name="VCPreLinkEventTool" | ||
/> | ||
<Tool | ||
Name="VCLinkerTool" | ||
AdditionalDependencies="$(NoInherit)" | ||
LinkIncremental="1" | ||
GenerateDebugInformation="true" | ||
TargetMachine="1" | ||
/> | ||
<Tool | ||
Name="VCALinkTool" | ||
/> | ||
<Tool | ||
Name="VCManifestTool" | ||
/> | ||
<Tool | ||
Name="VCXDCMakeTool" | ||
/> | ||
<Tool | ||
Name="VCBscMakeTool" | ||
/> | ||
<Tool | ||
Name="VCFxCopTool" | ||
/> | ||
<Tool | ||
Name="VCAppVerifierTool" | ||
/> | ||
<Tool | ||
Name="VCPostBuildEventTool" | ||
/> | ||
</Configuration> | ||
</Configurations> | ||
<References> | ||
<AssemblyReference | ||
RelativePath="System.dll" | ||
AssemblyName="System, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" | ||
MinFrameworkVersion="131072" | ||
/> | ||
<AssemblyReference | ||
RelativePath="System.Data.dll" | ||
AssemblyName="System.Data, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089, processorArchitecture=x86" | ||
MinFrameworkVersion="131072" | ||
/> | ||
<AssemblyReference | ||
RelativePath="System.XML.dll" | ||
AssemblyName="System.Xml, Version=2.0.0.0, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" | ||
MinFrameworkVersion="131072" | ||
/> | ||
</References> | ||
<Files> | ||
<Filter | ||
Name="Source Files" | ||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx" | ||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}" | ||
> | ||
<File | ||
RelativePath=".\AssemblyInfo.cpp" | ||
> | ||
</File> | ||
<File | ||
RelativePath=".\Rhino.Mocks.CPP.Interfaces.cpp" | ||
> | ||
</File> | ||
<File | ||
RelativePath=".\Stdafx.cpp" | ||
> | ||
<FileConfiguration | ||
Name="Debug|Win32" | ||
> | ||
<Tool | ||
Name="VCCLCompilerTool" | ||
UsePrecompiledHeader="1" | ||
/> | ||
</FileConfiguration> | ||
<FileConfiguration | ||
Name="Release|Win32" | ||
> | ||
<Tool | ||
Name="VCCLCompilerTool" | ||
UsePrecompiledHeader="1" | ||
/> | ||
</FileConfiguration> | ||
</File> | ||
</Filter> | ||
<Filter | ||
Name="Header Files" | ||
Filter="h;hpp;hxx;hm;inl;inc;xsd" | ||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}" | ||
> | ||
<File | ||
RelativePath=".\resource.h" | ||
> | ||
</File> | ||
<File | ||
RelativePath=".\Rhino.Mocks.CPP.Interfaces.h" | ||
> | ||
</File> | ||
<File | ||
RelativePath=".\Stdafx.h" | ||
> | ||
</File> | ||
</Filter> | ||
<Filter | ||
Name="Resource Files" | ||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav" | ||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}" | ||
> | ||
<File | ||
RelativePath=".\app.ico" | ||
> | ||
</File> | ||
<File | ||
RelativePath=".\app.rc" | ||
> | ||
</File> | ||
</Filter> | ||
<File | ||
RelativePath=".\ReadMe.txt" | ||
> | ||
</File> | ||
</Files> | ||
<Globals> | ||
</Globals> | ||
</VisualStudioProject> |
5 changes: 5 additions & 0 deletions
5
Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces/Stdafx.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// stdafx.cpp : source file that includes just the standard includes | ||
// Rhino.Mocks.CPP.Interfaces.pch will be the pre-compiled header | ||
// stdafx.obj will contain the pre-compiled type information | ||
|
||
#include "stdafx.h" |
7 changes: 7 additions & 0 deletions
7
Rhino.Mocks.CPP.Interfaces/Rhino.Mocks.CPP.Interfaces/Stdafx.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// stdafx.h : include file for standard system include files, | ||
// or project specific include files that are used frequently, | ||
// but are changed infrequently | ||
|
||
#pragma once | ||
|
||
|
Binary file not shown.
Oops, something went wrong.