CKato::SendSystemData (Compact 2013)

3/26/2014

This method sends a buffer of raw data to a particular system on the server side.

Syntax

BOOL SendSystemData(
  DWORD dwSystemID,
  LPCVOID lpcvBuffer,
  DWORD dwSize
);

Parameters

  • dwSystemID
    Unique identifier that identifies the data. Only systems that recognize this identifier value accept and process the data.
  • lpcvBuffer
    Pointer to a buffer of system dependent data.
  • dwSize
    Size, in bytes, of the data pointer to lpcvBuffer. This value cannot exceed KATO_MAX_DATA_SIZE.

Return Value

Nonzero if successful; otherwise zero.

Remarks

With this method, you can use Kato for additional tasks besides text logging. Systems can be written to perform data analysis, code profiling, statistics, graphing, and so on. This method provides the ability to transfer raw data to the server where it can be interpreted by systems that understand the format of the data.

Requirements

Header

kato.h

Library

kato.lib

See Also

Concepts

CKato (C++)