documentation

This commit is contained in:
Paul Reeves 2023-01-23 13:43:18 +01:00
parent 6259849525
commit 944bd3ac83
2 changed files with 6 additions and 6 deletions

View File

@ -121,10 +121,10 @@ FB_UDR_END_FUNCTION
/*** DDL /*** DDL
create function flagged ( create function flagged (
n1 integer, flags integer,
n2 integer flag integer
) returns integer ) returns integer
external name 'my_first_udr_kit!MFK_flagged' external name 'my_first_udr_kit!MFK_flagged!What is this function intended for?'
engine udr; engine udr;
***/ ***/
FB_UDR_BEGIN_FUNCTION(MFK_flagged) FB_UDR_BEGIN_FUNCTION(MFK_flagged)
@ -165,7 +165,7 @@ FB_UDR_END_FUNCTION
afilename varchar(8191), afilename varchar(8191),
ablobcallback BLOB ablobcallback BLOB
) returns bigint ) returns bigint
external name 'my_first_udr_kit!MFK_Blob_Save' external name 'my_first_udr_kit!MFK_Blob_Save!Load file and save to Blob'
engine udr; engine udr;
***/ ***/
FB_UDR_BEGIN_FUNCTION(MFK_Blob_Save) FB_UDR_BEGIN_FUNCTION(MFK_Blob_Save)
@ -221,7 +221,7 @@ FB_UDR_END_FUNCTION
d integer, d integer,
date date
) returns date ) returns date
external name 'my_first_udr_kit!MFK_BillDate' external name 'my_first_udr_kit!MFK_BillDate!What does BillDate do?'
engine udr; engine udr;
***/ ***/
// FB_UDR_BEGIN_FUNCTION(MFK_BillDate) // FB_UDR_BEGIN_FUNCTION(MFK_BillDate)

View File

@ -15,7 +15,7 @@
// This is the basic stuff from UdrCppExample.h - seems to be declared in all UDR libraries //// DOC NOTE This is the basic stuff from UdrCppExample.h - seems to be declared in all UDR libraries
namespace namespace
{ {