ServiceCallback (Compact 2013)

3/26/2014

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 Object Exchange (OBEX) Protocol 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

See Also

Reference

OBEX Functions