Re: API for fetching the computer name in cocoa
Re: API for fetching the computer name in cocoa
- Subject: Re: API for fetching the computer name in cocoa
- From: Bill Monk <email@hidden>
- Date: Fri, 12 Jun 2009 08:21:03 -0500
On Jun 12, 2009, at 5:43 AM, "Gerriet M. Denkmann" wrote:
StringPtr c = (void *)response;
NSUInteger cle = *c;
char *cu = malloc( cle + 1);
memcpy( cu, c + 1, cle);
cu[cle] = '\0';
NSLog(@"%s gestaltUserVisibleMachineName â \"%s\" (%lu chars)",
Can reduce to:
NSMutableString *cu = [NSMutableString string];
CFStringAppendPascalString( (CFMutableStringRef)cu,
(StringPtr)response, kCFStringEncodingMacRoman );
NSLog( @"%s gestaltUserVisibleMachineName â \"%@\" (%u chars)",
__FUNCTION__, cu, [cu length] );
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden