X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Flibsharing%2Fsharing-service-option.h;fp=src%2Flibsharing%2Fsharing-service-option.h;h=dec4d02d021d848f417046a80f4ffdb5a475d91e;hb=3787cd323f8bae8096463890982f100a69e348d2;hp=0000000000000000000000000000000000000000;hpb=c41d20b662ee28711818d5ff1e02c43404876c79;p=yandexfotkisp diff --git a/src/libsharing/sharing-service-option.h b/src/libsharing/sharing-service-option.h new file mode 100644 index 0000000..dec4d02 --- /dev/null +++ b/src/libsharing/sharing-service-option.h @@ -0,0 +1,38 @@ +/* +* This file is part of libsharing +* +* Copyright © 2008-2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. +* +* Contact: Alexander Bokovoy +* +* This software, including documentation, is protected by copyright controlled by +* Nokia Corporation. All rights are reserved. Copying, including reproducing, storing, +* adapting or translating, any or all of this material requires the prior written consent +* of Nokia Corporation. This material also contains confidential information which may +* not be disclosed to others without the prior written consent of Nokia. +*/ + +/** + * SECTION:sharing-service-option + * @short_description: Object is simple id name pair used with #SharingAccount. + * + * #SharingServiceOptionValue is abstraction of sharing account specific option values. + */ + +#ifndef _SHARING_SERVICE_OPTION_H_ +#define _SHARING_SERVICE_OPTION_H_ + +#include + +G_BEGIN_DECLS + +typedef struct SharingServiceOptionValue SharingServiceOptionValue; + +SharingServiceOptionValue * sharing_service_option_value_new (const gchar * id, + const gchar * name, const gchar * description); +void sharing_service_option_value_free (SharingServiceOptionValue * value); +void sharing_service_option_values_free (GSList * values); + +G_END_DECLS + +#endif /* #ifndef _SHARING_SERVICE_OPTION_H_ */