From: Jisung Ahn Date: Tue, 7 May 2013 01:56:38 +0000 (+0900) Subject: remove bak file X-Git-Tag: submit/tizen_2.1/20130514.055123^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ca9d5e80a7b426ca84ae33324b52e5d7a2e099d;p=apps%2Fhome%2Fug-image-viewer-efl.git remove bak file Change-Id: I1dfcd6e5beb832791d17c5d2b7738b6cf2f2bc13 --- diff --git a/common/src/ivug-callback.c.bak b/common/src/ivug-callback.c.bak deleted file mode 100644 index 28c71fe..0000000 --- a/common/src/ivug-callback.c.bak +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright 2012 Samsung Electronics Co., Ltd - * - * Licensed under the Flora License, Version 1.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://floralicense.org/license/ - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - -#include "ivug-debug.h" -#include "ivug-callback.h" - -#include -//callback_func_t g_callback; - -callback_handle_t * ivug_callback_register() -{ - callback_handle_t *callback_handle = calloc(1, sizeof(callback_handle_t)); - return callback_handle; -} - -void ivug_callback_set_callback(callback_handle_t *handle, callback_func_t callback, void *data) -{ - IV_ASSERT(handle != NULL); - handle->CBFunc = callback; - handle->data = data; -} - -void ivug_callback_call(callback_handle_t *handle, void *data1, void *data2, void *data3) -{ - IV_ASSERT(handle != NULL); - if(handle->CBFunc) - { - (handle->CBFunc)(data1, data2, data3, handle->data); - } -} - -void ivug_callback_unregister(callback_handle_t *handle) -{ - IV_ASSERT(handle != NULL); - free(handle); -} -