kitlstub.c
上传用户:qiulin1960
上传日期:2013-10-16
资源大小:2844k
文件大小:2k
源码类别:

Windows CE

开发平台:

Windows_Unix

  1. //
  2. // Copyright (c) Microsoft Corporation.  All rights reserved.
  3. //
  4. //
  5. // Use of this source code is subject to the terms of the Microsoft end-user
  6. // license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
  7. // If you did not accept the terms of the EULA, you are not authorized to use
  8. // this source code. For a copy of the EULA, please see the LICENSE.RTF on your
  9. // install media.
  10. //
  11. /*++
  12. THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  13. ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  14. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  15. PARTICULAR PURPOSE.
  16. Module Name:
  17.    kitlstub.c
  18. Abstract:
  19. Notes:
  20. --*/
  21. #include <windows.h>
  22. #include <halether.h>
  23. USHORT wLocalMAC[3];    // Saved copy of the mac address
  24. void InitDebugEther(void)
  25. {
  26. }
  27. void OEMEthEnableInts(void)
  28. {
  29. }
  30. void OEMEthDisableInts(void)
  31. {
  32. }
  33. void
  34. CreateDeviceName(char *pMyAddr, char *szBuf)
  35. {
  36.     // Just copy a name over.
  37.     memcpy (szBuf, "NKNoKitl", 9);
  38. }
  39. BOOL EdbgSendUDP(BYTE *pFrameBuffer,    // @parm [IN] - Formatting buffer (must be at least 42 + cwLength bytes)
  40.                  EDBG_ADDR *pDestAddr,  // @parm [IN] - Address of destination
  41.                  USHORT wSrcPort,       // @parm [IN] - Source UDP port number
  42.                  BYTE *pData,           // @parm [IN] - User data buffer
  43.                  UINT16 cwLength )      // @parm [IN] - # of bytes of data in user buffer
  44. {
  45.     return FALSE;
  46. }
  47. #ifdef IMGSHAREETH
  48. BOOL OEMEthCurrentPacketFilter(PDWORD pdwRequestedFilter)
  49. {
  50.     return FALSE;
  51. }
  52. BOOL
  53. OEMEthMulticastList(PUCHAR  pucMulticastAddressList, DWORD  dwNoOfAddresses)
  54. {
  55.     return FALSE;
  56. }
  57. #endif