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
610 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: dbginv.hxx
  7. //
  8. // Contents: Header for invocation debugging
  9. //
  10. // History: 08-Mar-94 DrewB Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #ifndef __DBGINV_HXX__
  14. #define __DBGINV_HXX__
  15. typedef struct _INTERFACENAMES
  16. {
  17. char *pszInterface;
  18. char **ppszMethodNames;
  19. } INTERFACENAMES;
  20. extern INTERFACENAMES inInterfaceNames[];
  21. extern char *apszApiNames[];
  22. #endif // #ifndef __DBGINV_HXX__