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.

26 lines
387 B

  1. class NETINFO
  2. {
  3. sint32 ID;
  4. string ADDRESS;
  5. };
  6. class BLUESCREEN : __ExtrinsicEvent
  7. {
  8. string MACHINE;
  9. string IPADDRESS[];
  10. string STOPCODE;
  11. [key]
  12. string GUID="";
  13. };
  14. instance of Win32PseudoProvider as $P1
  15. {
  16. Name = "WatcherEventProv";
  17. };
  18. instance of __EventProviderRegistration
  19. {
  20. Provider = $P1;
  21. EventQueryList = {"select * from WatcherEvent"};
  22. };