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:
http://lists.apple.com/mailman/options/cocoa-dev/email@hidden
This email sent to email@hidden