Update AUTHORS and boiler plates
[platform/core/uifw/libpui.git] / src / PUI_common.h
index 62e15a5..71ea7fe 100644 (file)
@@ -1,3 +1,28 @@
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
 #ifndef _LIBPUI_COMMON_H_
 #define _LIBPUI_COMMON_H_
 
@@ -42,7 +67,9 @@ typedef unsigned int pui_bool;
 typedef char* pui_id;
 typedef char* pui_error_string;
 typedef struct _pui * pui_h;
+typedef struct _pui pui;
 typedef struct _pui_ani * pui_ani_h;
+typedef struct _pui_ani pui_ani;
 typedef struct _pui_module_data pui_module_data;
 typedef struct _PUI_Event_Animation_Status PUI_Event_Animation_Status;
 
@@ -54,17 +81,17 @@ typedef struct _pui_backend_module pui_backend_module;
 
 #define pui_err(msg, ...)                                                                              \
        do {                                                                                                            \
-               fprintf(stderr, "[ERROR][%s] " msg, __FUNCTION__, ##__VA_ARGS__);       \
+               fprintf(stderr, "[ERROR][%s][%d] " msg, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
        } while(0)
 
 #define pui_warn(msg, ...)                                                                             \
                do {                                                                                                    \
-                       fprintf(stderr, "[WARNING][%s] " msg, __FUNCTION__, ##__VA_ARGS__);     \
+                       fprintf(stderr, "[WARNING][%s][%d] " msg, __FUNCTION__, __LINE__, ##__VA_ARGS__);       \
                } while(0)
 
 #define pui_info(msg, ...)                                                                             \
        do {                                                                                                            \
-               fprintf(stdout, "[INFO][%s] " msg, __FUNCTION__, ##__VA_ARGS__);        \
+               fprintf(stdout, "[INFO][%s][%d] " msg, __FUNCTION__, __LINE__, ##__VA_ARGS__);  \
        } while(0)
 
 #endif//_LIBPUI_COMMON_H_