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

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. #include <windows.h>
  12. #include <keybdpdd.h>
  13. // Add NOP driver for USB HID and RDP support.
  14. BOOL
  15. WINAPI
  16. PS2_NOP_Entry(
  17.     UINT uiPddId,
  18.     PFN_KEYBD_EVENT pfnKeybdEvent,
  19.     PKEYBD_PDD *ppKeybdPdd
  20.     );
  21. BOOL
  22. WINAPI
  23. Matrix_Entry(
  24.     UINT uiPddId,
  25.     PFN_KEYBD_EVENT pfnKeybdEvent,
  26.     PKEYBD_PDD *ppKeybdPdd
  27.     );
  28. PFN_KEYBD_PDD_ENTRY g_rgpfnPddEntries[] = {
  29.     PS2_NOP_Entry,
  30.     Matrix_Entry,
  31.     NULL
  32. };