Home > Back-end >  The C code into Delphi
The C code into Delphi

Time:10-01

Const void * sqlite3_value_blob (sqlite3_value *);
I would like to know:
1, the return value is a pointer type, translated into function or process good
If the function, the former without *, how to translate
3, please give detailed explanation function former *, how should treat in the process of heart, is how to translate, for example

CodePudding user response:

1, 2, return void is a process, void * is return
3, before the function name and *, is the return pointer

CodePudding user response:

That is directly translated into procedure () line???????

CodePudding user response:

 
The function sqlite3_value_blob (a: ^ sqlite3_value) : the pointer.

CodePudding user response:

That is modified void *. The return type of void * is function. Return a pointer to the untyped.
If the function is void said before no return value, with the corresponding procedure.
No corresponding function Pointer type void * is to return, returns Pointer type
  • Related