⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 osb-browserglobal-marshal.c

📁 khtml在gtk上的移植版本
💻 C
字号:
/* * Copyright (c) 2004 Nokia. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Nokia nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */#include	<glib-object.h>#ifdef G_ENABLE_DEBUG#define g_marshal_value_peek_boolean(v)  g_value_get_boolean (v)#define g_marshal_value_peek_char(v)     g_value_get_char (v)#define g_marshal_value_peek_uchar(v)    g_value_get_uchar (v)#define g_marshal_value_peek_int(v)      g_value_get_int (v)#define g_marshal_value_peek_uint(v)     g_value_get_uint (v)#define g_marshal_value_peek_long(v)     g_value_get_long (v)#define g_marshal_value_peek_ulong(v)    g_value_get_ulong (v)#define g_marshal_value_peek_int64(v)    g_value_get_int64 (v)#define g_marshal_value_peek_uint64(v)   g_value_get_uint64 (v)#define g_marshal_value_peek_enum(v)     g_value_get_enum (v)#define g_marshal_value_peek_flags(v)    g_value_get_flags (v)#define g_marshal_value_peek_float(v)    g_value_get_float (v)#define g_marshal_value_peek_double(v)   g_value_get_double (v)#define g_marshal_value_peek_string(v)   (char*) g_value_get_string (v)#define g_marshal_value_peek_param(v)    g_value_get_param (v)#define g_marshal_value_peek_boxed(v)    g_value_get_boxed (v)#define g_marshal_value_peek_pointer(v)  g_value_get_pointer (v)#define g_marshal_value_peek_object(v)   g_value_get_object (v)#else /* !G_ENABLE_DEBUG *//* WARNING: This code accesses GValues directly, which is UNSUPPORTED API. *          Do not access GValues directly in your code. Instead, use the *          g_value_get_*() functions */#define g_marshal_value_peek_boolean(v)  (v)->data[0].v_int#define g_marshal_value_peek_char(v)     (v)->data[0].v_int#define g_marshal_value_peek_uchar(v)    (v)->data[0].v_uint#define g_marshal_value_peek_int(v)      (v)->data[0].v_int#define g_marshal_value_peek_uint(v)     (v)->data[0].v_uint#define g_marshal_value_peek_long(v)     (v)->data[0].v_long#define g_marshal_value_peek_ulong(v)    (v)->data[0].v_ulong#define g_marshal_value_peek_int64(v)    (v)->data[0].v_int64#define g_marshal_value_peek_uint64(v)   (v)->data[0].v_uint64#define g_marshal_value_peek_enum(v)     (v)->data[0].v_int#define g_marshal_value_peek_flags(v)    (v)->data[0].v_uint#define g_marshal_value_peek_float(v)    (v)->data[0].v_float#define g_marshal_value_peek_double(v)   (v)->data[0].v_double#define g_marshal_value_peek_string(v)   (v)->data[0].v_pointer#define g_marshal_value_peek_param(v)    (v)->data[0].v_pointer#define g_marshal_value_peek_boxed(v)    (v)->data[0].v_pointer#define g_marshal_value_peek_pointer(v)  (v)->data[0].v_pointer#define g_marshal_value_peek_object(v)   (v)->data[0].v_pointer#endif /* !G_ENABLE_DEBUG *//* VOID:POINTER (osb-browserglobal-marshal.list:1) */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -