remove bak file tizen_2.1 submit/tizen_2.1/20130514.055123
authorJisung Ahn <jcastle.ahn@samsung.com>
Tue, 7 May 2013 01:56:38 +0000 (10:56 +0900)
committerJisung Ahn <jcastle.ahn@samsung.com>
Tue, 7 May 2013 01:56:38 +0000 (10:56 +0900)
Change-Id: I1dfcd6e5beb832791d17c5d2b7738b6cf2f2bc13

common/src/ivug-callback.c.bak [deleted file]

diff --git a/common/src/ivug-callback.c.bak b/common/src/ivug-callback.c.bak
deleted file mode 100644 (file)
index 28c71fe..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*\r
- * Copyright 2012  Samsung Electronics Co., Ltd\r
- *\r
- * Licensed under the Flora License, Version 1.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *       http://floralicense.org/license/\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-
-
-#include "ivug-debug.h"
-#include "ivug-callback.h"
-
-#include <stdlib.h>
-//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);
-}
-