Files
tubestation/toolkit/components/alerts/mac/growl/CFMutableDictionaryAdditions.h

20 lines
614 B
C

//
// CFMutableDictionaryAdditions.h
// Growl
//
// Created by Ingmar Stein on 29.05.05.
// Copyright 2005-2006 The Growl Project. All rights reserved.
//
// This file is under the BSD License, refer to License.txt for details
#ifndef HAVE_CFMUTABLEDICTIONARYADDITIONS_H
#define HAVE_CFMUTABLEDICTIONARYADDITIONS_H
#include "CFGrowlDefines.h"
void setObjectForKey(MUTABLE_DICTIONARY_TYPE dict, const void *key, OBJECT_TYPE value);
void setIntegerForKey(MUTABLE_DICTIONARY_TYPE dict, const void *key, int value);
void setBooleanForKey(MUTABLE_DICTIONARY_TYPE dict, const void *key, BOOL_TYPE value);
#endif