added clientcontext variable to Open Transport initialisation
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10019 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -197,11 +197,17 @@ int GSocket_Init()
|
||||
{
|
||||
OSStatus err ;
|
||||
#if TARGET_CARBON
|
||||
InitOpenTransportInContext( kInitOTForApplicationMask , NULL ) ;
|
||||
// Marc Newsam: added the clientcontext variable
|
||||
// however, documentation is unclear how this works
|
||||
OTClientContextPtr clientcontext;
|
||||
|
||||
InitOpenTransportInContext(kInitOTForApplicationMask, &clientcontext);
|
||||
gInetSvcRef = OTOpenInternetServicesInContext(kDefaultInternetServicesPath,
|
||||
NULL, &err, clientcontext);
|
||||
#else
|
||||
InitOpenTransport() ;
|
||||
#endif
|
||||
gInetSvcRef = OTOpenInternetServices(kDefaultInternetServicesPath, NULL, &err);
|
||||
#endif
|
||||
if ( gInetSvcRef == NULL || err != kOTNoError )
|
||||
{
|
||||
OTAssert("Could not open Inet Services", err == noErr);
|
||||
|
@@ -197,11 +197,17 @@ int GSocket_Init()
|
||||
{
|
||||
OSStatus err ;
|
||||
#if TARGET_CARBON
|
||||
InitOpenTransportInContext( kInitOTForApplicationMask , NULL ) ;
|
||||
// Marc Newsam: added the clientcontext variable
|
||||
// however, documentation is unclear how this works
|
||||
OTClientContextPtr clientcontext;
|
||||
|
||||
InitOpenTransportInContext(kInitOTForApplicationMask, &clientcontext);
|
||||
gInetSvcRef = OTOpenInternetServicesInContext(kDefaultInternetServicesPath,
|
||||
NULL, &err, clientcontext);
|
||||
#else
|
||||
InitOpenTransport() ;
|
||||
#endif
|
||||
gInetSvcRef = OTOpenInternetServices(kDefaultInternetServicesPath, NULL, &err);
|
||||
#endif
|
||||
if ( gInetSvcRef == NULL || err != kOTNoError )
|
||||
{
|
||||
OTAssert("Could not open Inet Services", err == noErr);
|
||||
|
Reference in New Issue
Block a user