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:
Shawn Hoffman 2009-05-29 02:57:09 +00:00
parent 9d97335721
commit c412a0eac5
2 changed files with 10 additions and 1 deletions

View File

@ -18,7 +18,7 @@
#include "../Memmap.h"
#include "../EXI_Device.h"
#include "../EXI_DeviceEthernet.h"
#include "Tap_Win32.h"
#include "TAP_Win32.h"
#include <assert.h>
@ -61,6 +61,7 @@ if(isActivated())
#endif //0
mHAdapter = CreateFile (/*device_path*/
//{DF0B593D-F759-4FE5-BCC8-844BC89245D7}
//{E0277714-28A6-4EB6-8AA2-7DF4870C04F6}
USERMODEDEVICEDIR "{E0277714-28A6-4EB6-8AA2-7DF4870C04F6}" TAPSUFFIX,
GENERIC_READ | GENERIC_WRITE, 0, 0, OPEN_EXISTING,
@ -127,6 +128,14 @@ if(isActivated())
return true;
//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)
{
if(!isActivated())