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.

42 lines
655 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. SEOINT.h
  5. Abstract:
  6. This module contains the declarations for the internal
  7. interfaces to the Server Extension Objects library.
  8. Author:
  9. Don Dumitru (dondu@microsoft.com)
  10. Revision History:
  11. dondu 12/23/96 created
  12. --*/
  13. #ifndef _SEOINT_INC
  14. #define _SEOINT_INC
  15. #ifndef SEOHANDLE_DEFINED
  16. #define SEOHANDLE_DEFINED
  17. DECLARE_HANDLE(SEOHANDLE);
  18. #endif
  19. SEODLLDEF STDAPI SEOInit(REFGUID guidInstance, SEOHANDLE *pshHandle);
  20. SEODLLDEF STDAPI SEOTerm(SEOHANDLE shHandle);
  21. SEODLLDEF STDAPI SEOCallBinding(SEOHANDLE shHandle,
  22. REFGUID guidBindingType,
  23. LONG lEvent);
  24. #endif