Re: Tiger Intel AS Studio, eSellerate Integrated to Embedded transition
Re: Tiger Intel AS Studio, eSellerate Integrated to Embedded transition
- Subject: Re: Tiger Intel AS Studio, eSellerate Integrated to Embedded transition
- From: Conor Dearden <email@hidden>
- Date: Mon, 03 Apr 2006 10:24:42 +0200
Hi Graham,
There is no init for the new embedded web store use the following to install
the engine:
NSString *pathToEngine = [[NSBundle mainBundle]
pathForResource:@"EWSMacCompress.tar.gz" ofType:nil];
OSStatus error = eWeb_InstallEngineFromPath([pathToEngine UTF8String]);
if ( error < E_SUCCESS) {
NSLog(@"Esellerate engine install failed with code: %d",
engineStatus);
return nil;
}
Then send calls with the functions like this example:
OSStatus validSN = eWeb_ActivateSerialNumber ([publisherID UTF8String],
[activationID UTF8String], [key UTF8String], 1);
As you can tell from the example they are not methods any more. (your not
sending a message to an object your using a function now.) There is no class
to instantiate with init as the old integrated seller.
Regards,
Conor.
http://www.bruji.com/
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden