36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
/*
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Description : Query.h
|
|
//
|
|
// structure for communication with waypoint dll
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Creation date: 5 jul 1997 Author: J Thénoz
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Modification date: Author:
|
|
//
|
|
//
|
|
//
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
*/
|
|
|
|
#ifndef __QUERY_H__
|
|
#define __QUERY_H__
|
|
|
|
typedef struct stCreateWayMess_
|
|
{
|
|
WP_tdhWay hEngineWay; /* Handle to the engine waypoint*/
|
|
CString csName; /* Name of the waypoint to create*/
|
|
CPA_BaseObject * pOwner; /* Owner of the way*/
|
|
CString csReferenceSectionName;
|
|
} tdstCreateWayMess;
|
|
|
|
|
|
|
|
|
|
#endif
|