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.

31 lines
513 B

  1. class MyEvent : __ExtrinsicEvent
  2. {
  3. string Name;
  4. sint32 value;
  5. };
  6. instance of __Win32Provider
  7. {
  8. Name = "MyEventProvider";
  9. CLSID = "{4916157A-FBE7-11d1-AEC4-00C04FB68820}";
  10. DefaultMachineName = NULL;
  11. ClientLoadableCLSID = NULL;
  12. ImpersonationLevel = 0;
  13. PerUserInitialization = FALSE;
  14. Pure = TRUE;
  15. UnloadTimeout = NULL;
  16. };
  17. instance of __EventProviderRegistration
  18. {
  19. provider = "__Win32Provider=\"MyEventProvider\"";
  20. EventQueryList = { "select * from MyEvent" };
  21. };