Skip to content

Commit

Permalink
Update TestPacketSend example project for VS 2015
Browse files Browse the repository at this point in the history
  • Loading branch information
bonsaiviking committed Aug 15, 2018
1 parent 1cfda67 commit 97a53a8
Show file tree
Hide file tree
Showing 5 changed files with 155 additions and 473 deletions.
10 changes: 10 additions & 0 deletions Examples/MakeAll.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GetMacAddress", "PacketDriv
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestPacketCapture", "PacketDriver\TestPacketCapture\TestPacketCapture.vcxproj", "{79942922-E02C-486D-9EE3-A13C0876C4C2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestPacketSend", "PacketDriver\TestPacketSend\TestPacketSend.vcxproj", "{1E3BED58-2F2C-463A-B9FD-9A55235C6840}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Expand Down Expand Up @@ -51,6 +53,14 @@ Global
{79942922-E02C-486D-9EE3-A13C0876C4C2}.Release|x64.Build.0 = Release|x64
{79942922-E02C-486D-9EE3-A13C0876C4C2}.Release|x86.ActiveCfg = Release|Win32
{79942922-E02C-486D-9EE3-A13C0876C4C2}.Release|x86.Build.0 = Release|Win32
{1E3BED58-2F2C-463A-B9FD-9A55235C6840}.Debug|x64.ActiveCfg = Debug|x64
{1E3BED58-2F2C-463A-B9FD-9A55235C6840}.Debug|x64.Build.0 = Debug|x64
{1E3BED58-2F2C-463A-B9FD-9A55235C6840}.Debug|x86.ActiveCfg = Debug|Win32
{1E3BED58-2F2C-463A-B9FD-9A55235C6840}.Debug|x86.Build.0 = Debug|Win32
{1E3BED58-2F2C-463A-B9FD-9A55235C6840}.Release|x64.ActiveCfg = Release|x64
{1E3BED58-2F2C-463A-B9FD-9A55235C6840}.Release|x64.Build.0 = Release|x64
{1E3BED58-2F2C-463A-B9FD-9A55235C6840}.Release|x86.ActiveCfg = Release|Win32
{1E3BED58-2F2C-463A-B9FD-9A55235C6840}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
4 changes: 2 additions & 2 deletions Examples/PacketDriver/TestPacketSend/TestPacketSend.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include <conio.h>
#include <time.h>

#include "..\..\..\Include\packet32.h"
#include <Packet32.h>


#define Max_Num_Adapter 10
Expand Down Expand Up @@ -91,7 +91,7 @@ float cpu_time;
{

case 'i':
sscanf_s(argv[i+1],"%s",AdapterName);
sscanf_s(argv[i+1],"%s",AdapterName, (unsigned)_countof(AdapterName));
break;

case 'n':
Expand Down
107 changes: 0 additions & 107 deletions Examples/PacketDriver/TestPacketSend/TestPacketSend.dsp

This file was deleted.

Loading

0 comments on commit 97a53a8

Please sign in to comment.