Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. /*-----------------------------------------------*/
  4. /* the following lines are specific to this file */
  5. /*-----------------------------------------------*/
  6. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  7. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  8. * The strings don't need a '\0', since common.ver has them.
  9. */
  10. #define VER_FILETYPE VFT_DLL
  11. /* possible values: VFT_UNKNOWN
  12. VFT_APP
  13. VFT_DLL
  14. VFT_DRV
  15. VFT_FONT
  16. VFT_VXD
  17. VFT_STATIC_LIB
  18. */
  19. #define VER_FILESUBTYPE VFT2_UNKNOWN
  20. /* possible values VFT2_UNKNOWN
  21. VFT2_DRV_PRINTER
  22. VFT2_DRV_KEYBOARD
  23. VFT2_DRV_LANGUAGE
  24. VFT2_DRV_DISPLAY
  25. VFT2_DRV_MOUSE
  26. VFT2_DRV_NETWORK
  27. VFT2_DRV_SYSTEM
  28. VFT2_DRV_INSTALLABLE
  29. VFT2_DRV_SOUND
  30. VFT2_DRV_COMM
  31. */
  32. #define VER_FILEDESCRIPTION_STR "Perflib Event Messages"
  33. #define VER_INTERNALNAME_STR "PRFLBMSG.DLL"
  34. #define VER_ORIGINALFILENAME_STR "PRFLBMSG.DLL"
  35. #include "common.ver"
  36. #include "prflbmsg.rc"
  37.