CFPreferencesSetMultiple

Header: CFPreferences.h Carbon status: Under Evaluation

Convenience function that allows you to set and remove multiple preference values.

void CFPreferencesSetMultiple (
    CFDictionaryRef keysToSet, 
    CFArrayRef keysToRemove, 
    CFStringRef applicationID, 
    CFStringRef userName, 
    CFStringRef hostName
);
Parameter descriptions
keysToSet

Key/value pairs for the preferences you wish to set.

keysToRemove

A list of keys to remove.

applicationID

The ID of the application whose preferences you wish to modify.

userName

The name of the user whose preferences you wish to modify.

hostName

The name of the host whose preferences you wish to modify.

DISCUSSION

Only the exact domain specified is modified. Do not use this function directly unless you have a specific need. All arguments except value.must be non-NULL. Do not use arbitrary user and host names, instead pass the pre-defined constants.

AVAILABILITY

Under evaluation for Carbon. Available in Carbon 1.1 and later when CarbonLib 1.1CarbonLib 1.1 or later is present.


© 2000 Apple Computer, Inc. (Last Updated 7/17/2000)