mirror of https://github.com/tongzx/nt5src
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
42 lines
655 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
SEOINT.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the declarations for the internal
|
|
interfaces to the Server Extension Objects library.
|
|
|
|
Author:
|
|
|
|
Don Dumitru ([email protected])
|
|
|
|
Revision History:
|
|
|
|
dondu 12/23/96 created
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _SEOINT_INC
|
|
#define _SEOINT_INC
|
|
|
|
|
|
#ifndef SEOHANDLE_DEFINED
|
|
#define SEOHANDLE_DEFINED
|
|
DECLARE_HANDLE(SEOHANDLE);
|
|
#endif
|
|
|
|
|
|
SEODLLDEF STDAPI SEOInit(REFGUID guidInstance, SEOHANDLE *pshHandle);
|
|
SEODLLDEF STDAPI SEOTerm(SEOHANDLE shHandle);
|
|
SEODLLDEF STDAPI SEOCallBinding(SEOHANDLE shHandle,
|
|
REFGUID guidBindingType,
|
|
LONG lEvent);
|
|
|
|
|
|
#endif
|