26 lines
469 B
C
26 lines
469 B
C
/*
|
|
* License Boiler plate here
|
|
*/
|
|
#ifndef MY_FIRST_UDR_KIT_H
|
|
#define MY_FIRST_UDR_KIT_H
|
|
|
|
#define FB_UDR_STATUS_TYPE ::Firebird::ThrowStatusWrapper
|
|
|
|
#include "ibase.h"
|
|
#include "firebird/UdrCppEngine.h"
|
|
#include "UdrCppTemplates.h"
|
|
#include <cassert>
|
|
#include <cstdio>
|
|
|
|
|
|
static const size_t MaxSegmentSize = 65535;
|
|
|
|
|
|
// This should be used in only one of the UDR library files.
|
|
// Build must export firebird_udr_plugin function.
|
|
|
|
FB_UDR_IMPLEMENT_ENTRY_POINT
|
|
|
|
|
|
#endif
|