次の方法で共有


ServiceCallback (Windows Embedded CE 6.0)

1/6/2010

This function provides a pointer to the OBEXTRANSACTION structure.

Syntax

typedef int (*ServiceCallback)(
  struct _obex_transaction * pTrans 
);

Parameters

  • pTrans
    Pointer to an OBEXTRANSACTION structure.

Return Value

This method returns the standard values E_INVALIDARG, E_OUTOFMEMORY, E_UNEXPECTED, and E_FAIL, as well as the following:

  • S_OK
    The method completed successfully.

Remarks

To create an OBEX server extension, a DLL that exports the ServiceCallback function must first be created. An OBEX server searches for this DLL in the registry after receiving an OBEX request for service (by default, this request applies to the default Inbox). After finding the DLL containing the exported ServiceCallback function, the OBEX server loads the server extension DLL and initializes service using an OBEX_REQ_INIT call to the service extension. At this point, the OBEX service is established and ready to transfer information as necessary.

Requirements

Header obexserver.h
Library Developer Implemented
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

OBEX Functions