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.

34 lines
549 B

  1. /*++
  2. Copyright (C) 1996-2001 Microsoft Corporation
  3. Module Name:
  4. MAIN.CPP
  5. Abstract:
  6. History:
  7. --*/
  8. #include "dllmain.h"
  9. #include <providl.h>
  10. #include "classinf.h"
  11. #include "sql1filt.h"
  12. #include "clsfac.h"
  13. void GlobalInitialize()
  14. {
  15. AddClassInfo(
  16. CLSID_HmmClassInfoFilter,
  17. new CClassFactory<CClassInfoFilter>(g_pLifeControl),
  18. "ClassInfo Filter",
  19. FALSE);
  20. AddClassInfo(
  21. CLSID_HmmSql1Filter,
  22. new CClassFactory<CSql1Filter>(g_pLifeControl),
  23. "SQL1 Filter",
  24. FALSE);
  25. }