APIDesc: Fixed modifiers for sqlite3 functions.
This commit is contained in:
parent
06c0ebee6d
commit
7f8a4eb726
@ -19033,6 +19033,8 @@ Parser:close();
|
|||||||
{
|
{
|
||||||
complete =
|
complete =
|
||||||
{
|
{
|
||||||
|
IsStatic = true,
|
||||||
|
IsGlobal = true, -- Emulate a global function without a self parameter - this is called with a dot convention
|
||||||
Params =
|
Params =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
@ -19050,6 +19052,8 @@ Parser:close();
|
|||||||
},
|
},
|
||||||
open =
|
open =
|
||||||
{
|
{
|
||||||
|
IsStatic = true,
|
||||||
|
IsGlobal = true, -- Emulate a global function without a self parameter - this is called with a dot convention
|
||||||
Params =
|
Params =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
@ -19083,6 +19087,8 @@ myDB:close()
|
|||||||
},
|
},
|
||||||
open_memory =
|
open_memory =
|
||||||
{
|
{
|
||||||
|
IsStatic = true,
|
||||||
|
IsGlobal = true, -- Emulate a global function without a self parameter - this is called with a dot convention
|
||||||
Returns =
|
Returns =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
@ -19094,6 +19100,8 @@ myDB:close()
|
|||||||
},
|
},
|
||||||
version =
|
version =
|
||||||
{
|
{
|
||||||
|
IsStatic = true,
|
||||||
|
IsGlobal = true, -- Emulate a global function without a self parameter - this is called with a dot convention
|
||||||
Returns =
|
Returns =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user