pike.git
/
src
/
builtin.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/builtin.cmod:1:
/* -*- c -*- || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: builtin.cmod,v 1.
239
2009/11/
11
14
:
05
:
58
grubba Exp $
+
|| $Id: builtin.cmod,v 1.
240
2009/11/
12
15
:
10
:
21
grubba Exp $
*/ #include "global.h" #include "interpret.h" #include "svalue.h" #include "pike_macros.h" #include "object.h" #include "program.h" #include "array.h" #include "pike_error.h"
pike.git/src/builtin.cmod:4149:
pop_stack(); } } /*! @endclass */ /*! @endmodule */
-
struct object *SqlNULL_object;
+
static
struct object *SqlNULL_object;
-
+
/* Proxy function needed for dynamic linkage on WIN32. */
+
PMOD_EXPORT struct object *get_sql_null(void)
+
{
+
return SqlNULL_object;
+
}
+
void init_builtin(void) { init_pike_list_node_blocks(); INIT add_object_constant("SqlNULL", SqlNULL_object = clone_object(SqlNull_program, 0), 0); } void exit_builtin(void)