theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3Lite_Config_CS_API

Sq3Lite PACKAGE - configure the applicatione … More...

+ Collaboration diagram for Sq3Lite_Config_CS_API:

Functions

static string cssq3lite.Sq3Lite.CompileOptionGet (int N)
  C#: [static] string CompileOptionGet(int N) C-API
Run-Time Library Compilation Options Diagnostics …
 
static bool cssq3lite.Sq3Lite.CompileOptionUsed (string zOptName)
  C#: [static] bool CompileOptionUsed(string zOptName) C-API
Run-Time Library Compilation Options Diagnostics …
 
static long cssq3lite.Sq3Lite.MemoryHighwater (int resetFlag)
  C#: [static] long MemoryHighwater(int resetFlag) C-API
Memory Allocator Statistics …
 
static long cssq3lite.Sq3Lite.MemoryUsed ()
  C#: [static] long MemoryUsed() C-API
Memory Allocator Statistics …
 
static void cssq3lite.Sq3Lite.Threadsafe ()
  C#: [static] Threadsafe() C-API
Test To See If The Library Is Threadsafe …
 

Detailed Description

Sq3Lite PACKAGE - configure the applicatione …

end Sq3Lite_Enum_C_API

Function Documentation

◆ CompileOptionGet()

static string cssq3lite.Sq3Lite.CompileOptionGet ( int N)
inlinestatic

C#: [static] string CompileOptionGet(int N) C-API
Run-Time Library Compilation Options Diagnostics …

Definition at line 190 of file LibSq3Lite_cs.cs.

190 {
191 IntPtr __retVal__L = Sq3.Sq3CompileOptionGet(N);
192 return Marshal.PtrToStringAnsi(__retVal__L);
193 }

◆ CompileOptionUsed()

static bool cssq3lite.Sq3Lite.CompileOptionUsed ( string zOptName)
inlinestatic

C#: [static] bool CompileOptionUsed(string zOptName) C-API
Run-Time Library Compilation Options Diagnostics …

Definition at line 196 of file LibSq3Lite_cs.cs.

196 {
197 IntPtr zOptName_cstr = Marshal.StringToHGlobalAnsi(zOptName);
198 bool __retVal__L = Sq3.Sq3CompileOptionUsed(zOptName_cstr);
199 Marshal.FreeHGlobal(zOptName_cstr);
200 return __retVal__L;
201 }

◆ MemoryHighwater()

static long cssq3lite.Sq3Lite.MemoryHighwater ( int resetFlag)
inlinestatic

C#: [static] long MemoryHighwater(int resetFlag) C-API
Memory Allocator Statistics …

Definition at line 204 of file LibSq3Lite_cs.cs.

204 {
205 Int64 __retVal__L = Sq3.Sq3MemoryHighwater(resetFlag);
206 return __retVal__L;
207 }

◆ MemoryUsed()

static long cssq3lite.Sq3Lite.MemoryUsed ( )
inlinestatic

C#: [static] long MemoryUsed() C-API
Memory Allocator Statistics …

Definition at line 210 of file LibSq3Lite_cs.cs.

210 {
211 Int64 __retVal__L = Sq3.Sq3MemoryUsed();
212 return __retVal__L;
213 }

◆ Threadsafe()

static void cssq3lite.Sq3Lite.Threadsafe ( )
inlinestatic

C#: [static] Threadsafe() C-API
Test To See If The Library Is Threadsafe …

Definition at line 216 of file LibSq3Lite_cs.cs.

216 {
217 MkErrorE errVal = Sq3.Sq3Threadsafe();
218 if (errVal > MkErrorE.CONTINUE) MkErrorC.Check(errVal);
219 }
static void Check(IntPtr ctx, MkErrorE err)
MkErrorE