add placeholder to fix windows build and rename Tap->TAP
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3292 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
9d97335721
commit
c412a0eac5
|
@ -18,7 +18,7 @@
|
||||||
#include "../Memmap.h"
|
#include "../Memmap.h"
|
||||||
#include "../EXI_Device.h"
|
#include "../EXI_Device.h"
|
||||||
#include "../EXI_DeviceEthernet.h"
|
#include "../EXI_DeviceEthernet.h"
|
||||||
#include "Tap_Win32.h"
|
#include "TAP_Win32.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
|
|
||||||
|
@ -61,6 +61,7 @@ if(isActivated())
|
||||||
#endif //0
|
#endif //0
|
||||||
|
|
||||||
mHAdapter = CreateFile (/*device_path*/
|
mHAdapter = CreateFile (/*device_path*/
|
||||||
|
//{DF0B593D-F759-4FE5-BCC8-844BC89245D7}
|
||||||
//{E0277714-28A6-4EB6-8AA2-7DF4870C04F6}
|
//{E0277714-28A6-4EB6-8AA2-7DF4870C04F6}
|
||||||
USERMODEDEVICEDIR "{E0277714-28A6-4EB6-8AA2-7DF4870C04F6}" TAPSUFFIX,
|
USERMODEDEVICEDIR "{E0277714-28A6-4EB6-8AA2-7DF4870C04F6}" TAPSUFFIX,
|
||||||
GENERIC_READ | GENERIC_WRITE, 0, 0, OPEN_EXISTING,
|
GENERIC_READ | GENERIC_WRITE, 0, 0, OPEN_EXISTING,
|
||||||
|
@ -127,6 +128,14 @@ if(isActivated())
|
||||||
return true;
|
return true;
|
||||||
//TODO: Activate Device!
|
//TODO: Activate Device!
|
||||||
}
|
}
|
||||||
|
bool CEXIETHERNET::CheckRecieved()
|
||||||
|
{
|
||||||
|
if(!isActivated())
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// I have no idea o_O
|
||||||
|
return false;
|
||||||
|
}
|
||||||
bool CEXIETHERNET::sendPacket(u8 *etherpckt, int size)
|
bool CEXIETHERNET::sendPacket(u8 *etherpckt, int size)
|
||||||
{
|
{
|
||||||
if(!isActivated())
|
if(!isActivated())
|
||||||
|
|
Loading…
Reference in New Issue