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
create function flagged (
n1 integer,
n2 integer
flags integer,
flag 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;
***/
FB_UDR_BEGIN_FUNCTION(MFK_flagged)
@ -165,7 +165,7 @@ FB_UDR_END_FUNCTION
afilename varchar(8191),
ablobcallback BLOB
) 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;
***/
FB_UDR_BEGIN_FUNCTION(MFK_Blob_Save)
@ -221,7 +221,7 @@ FB_UDR_END_FUNCTION
d integer,
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;
***/
// 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
{