diff options
author | Prajwal Mohan <prajwal.karur.mohan@intel.com> | 2012-04-27 15:45:31 -0700 |
---|---|---|
committer | Prajwal Mohan <prajwal.karur.mohan@intel.com> | 2012-04-27 15:45:31 -0700 |
commit | b7ef78844736699e9b96ecfb89853b0ceb6133f9 (patch) | |
tree | 69c7f426404fc2dfbe020984a4722fcbf1a61114 /attic/fluttr/libnflick/nflick-photo-list-worker-private.h | |
download | clutter-toys-b7ef78844736699e9b96ecfb89853b0ceb6133f9.tar.gz clutter-toys-b7ef78844736699e9b96ecfb89853b0ceb6133f9.tar.bz2 clutter-toys-b7ef78844736699e9b96ecfb89853b0ceb6133f9.zip |
Initial Import
Diffstat (limited to 'attic/fluttr/libnflick/nflick-photo-list-worker-private.h')
-rw-r--r-- | attic/fluttr/libnflick/nflick-photo-list-worker-private.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/attic/fluttr/libnflick/nflick-photo-list-worker-private.h b/attic/fluttr/libnflick/nflick-photo-list-worker-private.h new file mode 100644 index 0000000..b2b84ab --- /dev/null +++ b/attic/fluttr/libnflick/nflick-photo-list-worker-private.h @@ -0,0 +1,54 @@ +/******************************************************************************/ +/* */ +/* GPL license, Copyright (c) 2005-2006 by: */ +/* */ +/* Authors: */ +/* Michael Dominic K. <michaldominik@gmail.com> */ +/* */ +/* This program is free software; you can redistribute it and/or modify it */ +/* under the terms of the GNU General Public License as published by the */ +/* Free Software Foundation; either version 2, or (at your option) any later */ +/* version. */ +/* */ +/* This program is distributed in the hope that it will be useful, but */ +/* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY */ +/* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License */ +/* for more details. */ +/* */ +/* You should have received a copy of the GNU General Public License along */ +/* with this program; if not, write to the Free Software Foundation, Inc., 59 */ +/* Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* */ +/******************************************************************************/ + +static NFlickWorker* ParentClass = NULL; + +struct _NFlickPhotoListWorkerPrivate +{ + gchar *Id; + gchar *Token; + GList *PhotoDataList; +}; + +enum +{ + ARG_0, +}; + +static void nflick_photo_list_worker_class_init (NFlickPhotoListWorkerClass *klass); + +static void nflick_photo_list_worker_init (NFlickPhotoListWorker *self); + +static gboolean private_init (NFlickPhotoListWorker *self, NFlickPhotoListWorkerPrivate *private); + +static void private_dispose (NFlickPhotoListWorkerPrivate *private); + +static void nflick_photo_list_worker_dispose (NFlickPhotoListWorker *self); + +static void nflick_photo_list_worker_finalize (NFlickPhotoListWorker *self); + +static NFlickWorkerStatus thread_func (NFlickPhotoListWorker *self); + +static void nflick_photo_list_worker_get_property (NFlickPhotoListWorker *self, guint propid, + GValue *value, GParamSpec *pspec); + |