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.

36 lines
522 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. Disp.h
  5. Abstract:
  6. Definitions for lightweight IDispatch implementation.
  7. Author:
  8. Darren L. Anderson (darrenan) 25-Jun-1998
  9. Revision History:
  10. 25-Jun-1998 darrenan
  11. Created.
  12. --*/
  13. #ifndef _DISP_H
  14. #define _DISP_H
  15. typedef HRESULT (STDMETHODCALLTYPE* DISPFUNC)(WORD, DISPPARAMS*, VARIANT*, void*);
  16. typedef struct _DISPMETHOD
  17. {
  18. WCHAR* wszName;
  19. DISPFUNC pfn;
  20. }
  21. DISPMETHOD;
  22. #endif