Init
This commit is contained in:
1021
Samples/RoomsBrowserGFx3/RakNet/RoomsBrowserGFx3_RakNet.cpp
Normal file
1021
Samples/RoomsBrowserGFx3/RakNet/RoomsBrowserGFx3_RakNet.cpp
Normal file
File diff suppressed because it is too large
Load Diff
171
Samples/RoomsBrowserGFx3/RakNet/RoomsBrowserGFx3_RakNet.h
Normal file
171
Samples/RoomsBrowserGFx3/RakNet/RoomsBrowserGFx3_RakNet.h
Normal file
@ -0,0 +1,171 @@
|
||||
/*
|
||||
* Original work: Copyright (c) 2014, Oculus VR, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* RakNet License.txt file in the licenses directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the RakNet Patents.txt file in the same directory.
|
||||
*
|
||||
*
|
||||
* Modified work: Copyright (c) 2017-2019, SLikeSoft UG (haftungsbeschränkt)
|
||||
*
|
||||
* This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
|
||||
* license found in the license.txt file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
#ifndef __ROOMS_BROWSER_GFX3_RAKNET
|
||||
#define __ROOMS_BROWSER_GFX3_RAKNET
|
||||
|
||||
#include "slikenet/WindowsIncludes.h"
|
||||
#include "slikenet/types.h"
|
||||
#include "Lobby2Message.h"
|
||||
#include "slikenet/PluginInterface2.h"
|
||||
#include "RoomsBrowserGFx3.h"
|
||||
#include "RoomsPlugin.h"
|
||||
|
||||
namespace SLNet {
|
||||
|
||||
/// This is data that should be set with RakPeerInterface::SetOfflinePingResponse()
|
||||
/// It should also be able to write this data to a LobbyServer instance
|
||||
struct ServerAndRoomBrowserData
|
||||
{
|
||||
unsigned short numPlayers;
|
||||
unsigned short maxPlayers;
|
||||
SLNet::RakString mapName;
|
||||
SLNet::RakString roomName;
|
||||
SLNet::RakNetGUID roomId;
|
||||
|
||||
/// For the LAN browser, it expects the offline ping response to be packed using the format from this structure
|
||||
/// Therefore, to advertise that your server is available or updated, fill out the parameters in this structure, then call SetAsOfflinePingResponse()
|
||||
/// When your server is no longer available, set the offline ping response to null
|
||||
void SetAsOfflinePingResponse(SLNet::RakPeerInterface *rakPeer);
|
||||
|
||||
/// Write to a RakNet table data structure, useful when creating the room or setting the room properties
|
||||
/// Writes everything EXCEPT the list of players
|
||||
void WriteToTable(DataStructures::Table *table);
|
||||
|
||||
/// \internal
|
||||
void Serialize(SLNet::BitStream *bitStream, bool writeToBitstream);
|
||||
};
|
||||
|
||||
// GFxPlayerTinyD3D9.cpp has an instance of this class, and callls the corresponding 3 function
|
||||
// This keeps the patching code out of the GFx sample as much as possible
|
||||
class RoomsBrowserGFx3_RakNet : public RoomsBrowserGFx3, public SLNet::Lobby2Callbacks, public PluginInterface2, SLNet::RoomsCallback
|
||||
{
|
||||
public:
|
||||
RoomsBrowserGFx3_RakNet();
|
||||
virtual ~RoomsBrowserGFx3_RakNet();
|
||||
virtual void Init(SLNet::Lobby2Client *_lobby2Client,
|
||||
SLNet::Lobby2MessageFactory *_messageFactory,
|
||||
RakPeerInterface *_rakPeer,
|
||||
SLNet::RoomsPlugin *_roomsPlugin,
|
||||
SLNet::RakString _titleName,
|
||||
SLNet::RakString _titleSecretKey,
|
||||
SLNet::RakString _pathToXMLPropertyFile,
|
||||
unsigned short _lanServerPort,
|
||||
GPtr<FxDelegate> pDelegate,
|
||||
GPtr<GFxMovieView> pMovie);
|
||||
|
||||
void Update(void);
|
||||
void Shutdown(void);
|
||||
|
||||
// Update all callbacks from flash
|
||||
void Accept(CallbackProcessor* cbreg);
|
||||
|
||||
virtual const char *QueryPlatform(void) const {return "RakNet";}
|
||||
virtual void SaveProperty(const char *propertyId, const char *propertyValue);
|
||||
virtual void LoadProperty(const char *propertyId, SLNet::RakString &propertyOut);
|
||||
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_ConnectToServer);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_Login);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_RegisterAccount);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_UpdateRoomsList);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_UpdateFriendsList);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_JoinByFilter);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_CreateRoom);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_Friends_SendInvite);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_Friends_Remove);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_Friends_AcceptInvite);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_Friends_RejectInvite);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_Directed_Chat_Func);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_Room_Chat_Func);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_Logoff);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_LeaveRoom);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_SendInvite);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_StartSpectating);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_StopSpectating);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_GrantModerator);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_SetReadyStatus);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_GetReadyStatus);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_SetRoomLockState);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_GetRoomLockState);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_AreAllMembersReady);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_KickMember);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_GetRoomProperties);
|
||||
ACTIONSCRIPT_CALLABLE_HEADER(f2c_StartGame);
|
||||
|
||||
// Lobby2
|
||||
virtual void MessageResult(SLNet::Client_Login *message);
|
||||
virtual void MessageResult(SLNet::Client_Logoff *message);
|
||||
virtual void MessageResult(SLNet::Client_RegisterAccount *message);
|
||||
virtual void MessageResult(SLNet::Friends_GetFriends *message);
|
||||
virtual void MessageResult(SLNet::Friends_GetInvites *message);
|
||||
virtual void MessageResult(SLNet::Friends_SendInvite *message);
|
||||
virtual void MessageResult(SLNet::Friends_AcceptInvite *message);
|
||||
virtual void MessageResult(SLNet::Friends_RejectInvite *message);
|
||||
virtual void MessageResult(SLNet::Friends_Remove *message);
|
||||
virtual void MessageResult(SLNet::Notification_Friends_PresenceUpdate *message);
|
||||
virtual void MessageResult(SLNet::Notification_Friends_StatusChange *message);
|
||||
|
||||
// PluginInterface2
|
||||
virtual void OnClosedConnection(const SystemAddress &systemAddress, RakNetGUID rakNetGUID, PI2_LostConnectionReason lostConnectionReason );
|
||||
virtual void OnNewConnection(const SystemAddress &systemAddress, RakNetGUID rakNetGUID, bool isIncoming);
|
||||
virtual void OnFailedConnectionAttempt(Packet *packet, PI2_FailedConnectionAttemptReason failedConnectionAttemptReason);
|
||||
virtual PluginReceiveResult OnReceive(Packet *packet);
|
||||
|
||||
/// Rooms callbacks
|
||||
virtual void CreateRoom_Callback( const SystemAddress &senderAddress, SLNet::CreateRoom_Func *callResult);
|
||||
virtual void SearchByFilter_Callback( const SystemAddress &senderAddress, SLNet::SearchByFilter_Func *callResult);
|
||||
virtual void JoinByFilter_Callback( const SystemAddress &senderAddress, SLNet::JoinByFilter_Func *callResult);
|
||||
virtual void Chat_Callback( const SystemAddress &senderAddress, SLNet::Chat_Func *callResult);
|
||||
virtual void Chat_Callback( const SystemAddress &senderAddress, SLNet::Chat_Notification *notification);
|
||||
virtual void LeaveRoom_Callback( const SystemAddress &senderAddress, SLNet::LeaveRoom_Func *callResult);
|
||||
virtual void SendInvite_Callback( const SystemAddress &senderAddress, SLNet::SendInvite_Func *callResult);
|
||||
virtual void StartSpectating_Callback( const SystemAddress &senderAddress, SLNet::StartSpectating_Func *callResult);
|
||||
virtual void StopSpectating_Callback( const SystemAddress &senderAddress, SLNet::StopSpectating_Func *callResult);
|
||||
virtual void GrantModerator_Callback( const SystemAddress &senderAddress, SLNet::GrantModerator_Func *callResult);
|
||||
virtual void SetReadyStatus_Callback( const SystemAddress &senderAddress, SLNet::SetReadyStatus_Func *callResult);
|
||||
virtual void GetReadyStatus_Callback( const SystemAddress &senderAddress, SLNet::GetReadyStatus_Func *callResult);
|
||||
virtual void SetRoomLockState_Callback( const SystemAddress &senderAddress, SLNet::SetRoomLockState_Func *callResult);
|
||||
virtual void GetRoomLockState_Callback( const SystemAddress &senderAddress, SLNet::GetRoomLockState_Func *callResult);
|
||||
virtual void AreAllMembersReady_Callback( const SystemAddress &senderAddress, SLNet::AreAllMembersReady_Func *callResult);
|
||||
virtual void KickMember_Callback( const SystemAddress &senderAddress, SLNet::KickMember_Func *callResult);
|
||||
virtual void GetRoomProperties_Callback( const SystemAddress &senderAddress, SLNet::GetRoomProperties_Func *callResult);
|
||||
|
||||
// Notifications due to other room members
|
||||
virtual void RoomMemberStartedSpectating_Callback( const SystemAddress &senderAddress, SLNet::RoomMemberStartedSpectating_Notification *notification);
|
||||
virtual void RoomMemberStoppedSpectating_Callback( const SystemAddress &senderAddress, SLNet::RoomMemberStoppedSpectating_Notification *notification);
|
||||
virtual void ModeratorChanged_Callback( const SystemAddress &senderAddress, SLNet::ModeratorChanged_Notification *notification);
|
||||
virtual void RoomMemberReadyStatusSet_Callback( const SystemAddress &senderAddress, SLNet::RoomMemberReadyStatusSet_Notification *notification);
|
||||
virtual void RoomLockStateSet_Callback( const SystemAddress &senderAddress, SLNet::RoomLockStateSet_Notification *notification);
|
||||
virtual void RoomMemberKicked_Callback( const SystemAddress &senderAddress, SLNet::RoomMemberKicked_Notification *notification);
|
||||
virtual void RoomMemberLeftRoom_Callback( const SystemAddress &senderAddress, SLNet::RoomMemberLeftRoom_Notification *notification);
|
||||
virtual void RoomMemberJoinedRoom_Callback( const SystemAddress &senderAddress, SLNet::RoomMemberJoinedRoom_Notification *notification);
|
||||
virtual void RoomInvitationSent_Callback( const SystemAddress &senderAddress, SLNet::RoomInvitationSent_Notification *notification);
|
||||
virtual void RoomInvitationWithdrawn_Callback( const SystemAddress &senderAddress, SLNet::RoomInvitationWithdrawn_Notification *notification);
|
||||
virtual void RoomDestroyedOnModeratorLeft_Callback( const SystemAddress &senderAddress, SLNet::RoomDestroyedOnModeratorLeft_Notification *notification);
|
||||
|
||||
SLNet::Lobby2Client *lobby2Client;
|
||||
SLNet::Lobby2MessageFactory *msgFactory;
|
||||
SLNet::RakPeerInterface *rakPeer;
|
||||
SLNet::RakString titleName;
|
||||
SLNet::RakString titleSecretKey;
|
||||
SLNet::RakString pathToXMLPropertyFile;
|
||||
SLNet::RakString loginUsername;
|
||||
SLNet::RoomsPlugin *roomsPlugin;
|
||||
unsigned short lanServerPort;
|
||||
};
|
||||
|
||||
} // namespace SLNet
|
||||
|
||||
#endif // __ROOMS_BROWSER_GFX3_RAKNET
|
||||
285
Samples/RoomsBrowserGFx3/RakNet/RoomsBrowserGFx3_RakNet.vcxproj
Normal file
285
Samples/RoomsBrowserGFx3/RakNet/RoomsBrowserGFx3_RakNet.vcxproj
Normal file
@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug - Unicode|Win32">
|
||||
<Configuration>Debug - Unicode</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release - Unicode|Win32">
|
||||
<Configuration>Release - Unicode</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Retail - Unicode|Win32">
|
||||
<Configuration>Retail - Unicode</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Retail|Win32">
|
||||
<Configuration>Retail</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{1E7A1DCE-807E-474B-B065-14F8C93A1D6C}</ProjectGuid>
|
||||
<RootNamespace>Lobby2Client</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Retail|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release - Unicode|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Retail - Unicode|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug - Unicode|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Retail|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release - Unicode|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Retail - Unicode|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug - Unicode|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug - Unicode|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug - Unicode|Win32'">true</LinkIncremental>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Retail|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release - Unicode|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Retail - Unicode|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Retail|Win32'">false</LinkIncremental>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release - Unicode|Win32'">false</LinkIncremental>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Retail - Unicode|Win32'">false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)DependentExtensions\XML;$(SolutionDir)Source/include;$(SolutionDir)DependentExtensions/Lobby2/Rooms;$(SolutionDir)DependentExtensions/GFx3;$(SolutionDir)Samples/RoomsBrowserGFx3;$(ProjectDir);$(SolutionDir)DependentExtensions/Lobby2;$(GFXSDK)\Src\GRenderer;$(GFXSDK)\Src\GKernel;$(GFXSDK)\Src\GFxXML;$(GFXSDK)\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>../../../lib/SLikeNet_LibStatic_Debug_Win32.lib;ws2_32.lib;libgfx.lib;libjpeg.lib;zlib.lib;imm32.lib;winmm.lib;libgrenderer_d3d9.lib;d3dx9.lib;d3d9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalLibraryDirectories>$(DXSDK_DIR)\Lib\x86;$(GFXSDK)\3rdParty\expat-2.0.1\lib;$(GFXSDK)\Lib\$(Platform)\Msvc80\Debug\;$(GFXSDK)\3rdParty\zlib-1.2.3\Lib\$(Platform)\Msvc80\Debug;$(GFXSDK)\3rdParty\jpeg-6b\Lib\$(Platform)\Msvc80\Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<TreatLinkerWarningAsErrors>true</TreatLinkerWarningAsErrors>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug - Unicode|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)DependentExtensions\XML;$(SolutionDir)Source/include;$(SolutionDir)DependentExtensions/Lobby2/Rooms;$(SolutionDir)DependentExtensions/GFx3;$(SolutionDir)Samples/RoomsBrowserGFx3;$(ProjectDir);$(SolutionDir)DependentExtensions/Lobby2;$(GFXSDK)\Src\GRenderer;$(GFXSDK)\Src\GKernel;$(GFXSDK)\Src\GFxXML;$(GFXSDK)\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>../../../lib/SLikeNet_LibStatic_Debug - Unicode_Win32.lib;ws2_32.lib;libgfx.lib;libjpeg.lib;zlib.lib;imm32.lib;winmm.lib;libgrenderer_d3d9.lib;d3dx9.lib;d3d9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalLibraryDirectories>$(DXSDK_DIR)\Lib\x86;$(GFXSDK)\3rdParty\expat-2.0.1\lib;$(GFXSDK)\Lib\$(Platform)\Msvc80\Debug\;$(GFXSDK)\3rdParty\zlib-1.2.3\Lib\$(Platform)\Msvc80\Debug;$(GFXSDK)\3rdParty\jpeg-6b\Lib\$(Platform)\Msvc80\Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
<TreatLinkerWarningAsErrors>true</TreatLinkerWarningAsErrors>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)DependentExtensions\XML;$(SolutionDir)Source/include;$(SolutionDir)DependentExtensions/Lobby2/Rooms;$(SolutionDir)DependentExtensions/GFx3;$(SolutionDir)Samples/RoomsBrowserGFx3;$(ProjectDir);$(SolutionDir)DependentExtensions/Lobby2;$(GFXSDK)\Src\GRenderer;$(GFXSDK)\Src\GKernel;$(GFXSDK)\Src\GFxXML;$(GFXSDK)\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>../../../lib/SLikeNet_LibStatic_Release_Win32.lib;ws2_32.lib;libgfx.lib;libjpeg.lib;zlib.lib;imm32.lib;winmm.lib;libgrenderer_d3d9.lib;d3dx9.lib;d3d9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalLibraryDirectories>$(DXSDK_DIR)\Lib\x86;$(GFXSDK)\3rdParty\expat-2.0.1\lib;$(GFXSDK)\Lib\$(Platform)\Msvc80\Release\;$(GFXSDK)\3rdParty\zlib-1.2.3\Lib\$(Platform)\Msvc80\Release;$(GFXSDK)\3rdParty\jpeg-6b\Lib\$(Platform)\Msvc80\Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TreatLinkerWarningAsErrors>true</TreatLinkerWarningAsErrors>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Retail|Win32'">
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)DependentExtensions\XML;$(SolutionDir)Source/include;$(SolutionDir)DependentExtensions/Lobby2/Rooms;$(SolutionDir)DependentExtensions/GFx3;$(SolutionDir)Samples/RoomsBrowserGFx3;$(ProjectDir);$(SolutionDir)DependentExtensions/Lobby2;$(GFXSDK)\Src\GRenderer;$(GFXSDK)\Src\GKernel;$(GFXSDK)\Src\GFxXML;$(GFXSDK)\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;WIN32;_RETAIL;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>../../../lib/SLikeNet_LibStatic_Retail_Win32.lib;ws2_32.lib;libgfx.lib;libjpeg.lib;zlib.lib;imm32.lib;winmm.lib;libgrenderer_d3d9.lib;d3dx9.lib;d3d9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalLibraryDirectories>$(DXSDK_DIR)\Lib\x86;$(GFXSDK)\3rdParty\expat-2.0.1\lib;$(GFXSDK)\Lib\$(Platform)\Msvc80\Release\;$(GFXSDK)\3rdParty\zlib-1.2.3\Lib\$(Platform)\Msvc80\Release;$(GFXSDK)\3rdParty\jpeg-6b\Lib\$(Platform)\Msvc80\Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TreatLinkerWarningAsErrors>true</TreatLinkerWarningAsErrors>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release - Unicode|Win32'">
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)DependentExtensions\XML;$(SolutionDir)Source/include;$(SolutionDir)DependentExtensions/Lobby2/Rooms;$(SolutionDir)DependentExtensions/GFx3;$(SolutionDir)Samples/RoomsBrowserGFx3;$(ProjectDir);$(SolutionDir)DependentExtensions/Lobby2;$(GFXSDK)\Src\GRenderer;$(GFXSDK)\Src\GKernel;$(GFXSDK)\Src\GFxXML;$(GFXSDK)\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>../../../lib/SLikeNet_LibStatic_Release - Unicode_Win32.lib;ws2_32.lib;libgfx.lib;libjpeg.lib;zlib.lib;imm32.lib;winmm.lib;libgrenderer_d3d9.lib;d3dx9.lib;d3d9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalLibraryDirectories>$(DXSDK_DIR)\Lib\x86;$(GFXSDK)\3rdParty\expat-2.0.1\lib;$(GFXSDK)\Lib\$(Platform)\Msvc80\Release\;$(GFXSDK)\3rdParty\zlib-1.2.3\Lib\$(Platform)\Msvc80\Release;$(GFXSDK)\3rdParty\jpeg-6b\Lib\$(Platform)\Msvc80\Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TreatLinkerWarningAsErrors>true</TreatLinkerWarningAsErrors>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Retail - Unicode|Win32'">
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)DependentExtensions\XML;$(SolutionDir)Source/include;$(SolutionDir)DependentExtensions/Lobby2/Rooms;$(SolutionDir)DependentExtensions/GFx3;$(SolutionDir)Samples/RoomsBrowserGFx3;$(ProjectDir);$(SolutionDir)DependentExtensions/Lobby2;$(GFXSDK)\Src\GRenderer;$(GFXSDK)\Src\GKernel;$(GFXSDK)\Src\GFxXML;$(GFXSDK)\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;WIN32;_RETAIL;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
<MinimalRebuild>true</MinimalRebuild>
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalDependencies>../../../lib/SLikeNet_LibStatic_Retail - Unicode_Win32.lib;ws2_32.lib;libgfx.lib;libjpeg.lib;zlib.lib;imm32.lib;winmm.lib;libgrenderer_d3d9.lib;d3dx9.lib;d3d9.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalLibraryDirectories>$(DXSDK_DIR)\Lib\x86;$(GFXSDK)\3rdParty\expat-2.0.1\lib;$(GFXSDK)\Lib\$(Platform)\Msvc80\Release\;$(GFXSDK)\3rdParty\zlib-1.2.3\Lib\$(Platform)\Msvc80\Release;$(GFXSDK)\3rdParty\jpeg-6b\Lib\$(Platform)\Msvc80\Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention>
|
||||
</DataExecutionPrevention>
|
||||
<TreatLinkerWarningAsErrors>true</TreatLinkerWarningAsErrors>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\RoomsBrowserGFx3.cpp" />
|
||||
<ClCompile Include="RoomsBrowserGFx3_RakNet.cpp" />
|
||||
<ClCompile Include="..\..\..\DependentExtensions\XML\xmlParser.cpp" />
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\GFx3\FxGameDelegate.cpp" />
|
||||
<ClCompile Include="..\GFxPlayerTinyD3D9.cpp" />
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Client.cpp" />
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Message.cpp" />
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Plugin.cpp" />
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Presence.cpp" />
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2ResultCode.cpp" />
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\IntervalTimer.cpp" />
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\ProfanityFilter.cpp" />
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsContainer.cpp" />
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsErrorCodes.cpp" />
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsPlugin.cpp" />
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomTypes.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\RoomsBrowserGFx3.h" />
|
||||
<ClInclude Include="RoomsBrowserGFx3_RakNet.h" />
|
||||
<ClInclude Include="..\..\..\DependentExtensions\XML\xmlParser.h" />
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\GFx3\FxGameDelegate.h" />
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Client.h" />
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Message.h" />
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Plugin.h" />
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Presence.h" />
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2ResultCode.h" />
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\IntervalTimer.h" />
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\ProfanityFilter.h" />
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsContainer.h" />
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsErrorCodes.h" />
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsPlugin.h" />
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomTypes.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,114 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Main">
|
||||
<UniqueIdentifier>{ed9d0796-f81c-411f-9efa-a11ea9dbf102}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="GFx3">
|
||||
<UniqueIdentifier>{c71ca9bf-67e9-4126-aef2-8a522e7c87b1}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Lobby2">
|
||||
<UniqueIdentifier>{572fffb7-927d-432d-99eb-f3b0662a49c6}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="RoomsPlugin">
|
||||
<UniqueIdentifier>{bb97be60-4eab-40e0-b3e2-7ffe3a682c24}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\RoomsBrowserGFx3.cpp">
|
||||
<Filter>Main</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="RoomsBrowserGFx3_RakNet.cpp">
|
||||
<Filter>Main</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\DependentExtensions\XML\xmlParser.cpp">
|
||||
<Filter>Main</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\GFx3\FxGameDelegate.cpp">
|
||||
<Filter>GFx3</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\GFxPlayerTinyD3D9.cpp">
|
||||
<Filter>GFx3</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Client.cpp">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Message.cpp">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Plugin.cpp">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Presence.cpp">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2ResultCode.cpp">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\IntervalTimer.cpp">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\ProfanityFilter.cpp">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsContainer.cpp">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsErrorCodes.cpp">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsPlugin.cpp">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomTypes.cpp">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\RoomsBrowserGFx3.h">
|
||||
<Filter>Main</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="RoomsBrowserGFx3_RakNet.h">
|
||||
<Filter>Main</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\DependentExtensions\XML\xmlParser.h">
|
||||
<Filter>Main</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\GFx3\FxGameDelegate.h">
|
||||
<Filter>GFx3</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Client.h">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Message.h">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Plugin.h">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2Presence.h">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(SolutionDir)DependentExtensions\Lobby2\Lobby2ResultCode.h">
|
||||
<Filter>Lobby2</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\IntervalTimer.h">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\ProfanityFilter.h">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsContainer.h">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsErrorCodes.h">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomsPlugin.h">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\DependentExtensions\Lobby2\Rooms\RoomTypes.h">
|
||||
<Filter>RoomsPlugin</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user