Classes | Variables
CurrentFuelConsumption: Set the current fuel consumption

Classes

struct  RI_CCurrentFuelConsumption
 Data structure for the Request "CurrentFuelConsumption". More...
 

Variables

const UINT RI_MESSAGE_CURRENTFUELCONSUMPTION = RegisterWindowMessage(TEXT("RI_MESSAGE_CURRENTFUELCONSUMPTION"))
 

Detailed Description

Variable Documentation

const UINT RI_MESSAGE_CURRENTFUELCONSUMPTION = RegisterWindowMessage(TEXT("RI_MESSAGE_CURRENTFUELCONSUMPTION"))

Message ID for the Request "CurrentFuelConsumption":
RI_MESSAGE_CURRENTFUELCONSUMPTION

Write Memory:

RI_CurrentFuelConsumption_WriteData(LPARAM id, RI_CCurrentFuelConsumption data);

Return Values for CurrentFuelConsumption:

RI_NOERROR = Set current fuel consumption succeeded
RI_NOTRUN = Navigation ist not running.

<h2>Description:</h2>Set current fuel consumption.<br>
<br>

<H2>Example:</H2>
#define USE_LOADLIBRARY
#include "TNSRemoteInterfaceDll.h"
LPARAM GetUniqueID()
{
//generate unique ID
static LPARAM id = 0;
if (++id == 0) ++id; // do not use 0 !!!!!
return id;
}
inline LRESULT RI_MESSAGE( const UINT request, HWND h_client, LPARAM id )
{
//check if RI handle is valid
if ( !IsWindow( RI_GetTNS() ) )
//send the request
PostMessage( RI_GetTNS(), request, WPARAM(h_client), id );
return RI_NOERROR;
}
LRESULT CDlgMFC_CurrentFuelConsumption::WindowProc ( UINT message , WPARAM wParam , LPARAM lParam )
{
//check messages for answer from RI
{
if ( (LRESULT)wParam == RI_NOERROR )
{
//set current fuel consumption succeeded. errorcode (0)
}
else if ( (LRESULT)wParam == RI_NOTRUN)
{
//could not set current fuel consumption, because navigation ist not running
}
else if ( (LRESULT)wParam == RI_NAVIGATIONNOTACTIVE)
{
//Navigator is not running or the configuration is not complete. errorcode(3)
}
}
return CDialog::WindowProc( message, wParam, lParam );
}
void CDlgMFC_CurrentFuelConsumption::foo()
{
//define struct
//write data in shared memory
LPARAM id = GetUniqueID();
LRESULT sharing_ret = RI_CurrentFuelConsumption_WriteData( id, data );
if ( sharing_ret != RI_NOERROR )
return;
if ( RI_MESSAGE( RI_MESSAGE_CURRENTFUELCONSUMPTION, GetSafeHwnd(), id ) == RI_NOERROR )
//message sending succeeded
else
//navigation software not running
}

© PTV Group 2020 Generated on Wed Apr 15 2020 12:47:53 for by doxygen 1.8.8