#include "l_bitmap.h"
L_UINT pEXT_CALLBACK YourWrite (nFd, pBuf, uCount, pUserData)
Replaces the normal LEADTOOLS function for writing a file.
Identifies the file to be written. The file handle is returned by the REDIRECTOPEN callback function.
Points to a buffer that contains data to be written to the file.
Specifies the number of bytes to be written to the file.
A void pointer that you can use to access a variable or structure containing data that your callback function needs. This gives you a way to receive data indirectly from the function that uses this callback function. (This is the same pointer that you pass in the pUserData parameter of the calling function.)
Keep in mind that this is a void pointer, which must be cast to the appropriate data type within your callback function.
Value | Meaning |
---|---|
>0 | The number of bytes that the function wrote to the file. |
-1 | The function failed. |
For information about using this type of callback, refer to L_RedirectIO.
When uCount is 0, the file should be truncated. That is, mark the current write position as the last position in the file. Please note that previous operating system write functions automatically truncated a file when 0 bytes were written. However, the WIN32 WriteFile function does not truncate the file.
Required DLLs and Libraries
For how the following function is defined and called, refer to L_RedirectIO.
This procedure is a replacement to the built in Write procedure.
In this example no I/O operation will be done, so we do nothing.
L_UINT WindowsWrite (L_INT FD, L_CHAR * pBuf, L_UINT uCount)
{
UNREFERENCED_PARAMETER (FD);
UNREFERENCED_PARAMETER (pBuf);
return (uCount);
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document