27 lines
1.0 KiB
C++
27 lines
1.0 KiB
C++
//*****************************************************************************
|
|
//* _zQuery.hpp *
|
|
//*****************************************************************************
|
|
//* *
|
|
//* This file contains the constants and structures used to communicate with *
|
|
//* the dll (OnQueryAction) *
|
|
//* *
|
|
//*****************************************************************************
|
|
//* Author : Alexis Vaisse *
|
|
//*****************************************************************************
|
|
|
|
|
|
#ifndef __ZQUERY_HPP__
|
|
#define __ZQUERY_HPP__
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
|
|
#define C_uiQueryEditAnObject 1
|
|
#define C_uiQueryEditAnObjectList 2
|
|
#define C_uiQueryAnObjectHasBeenChanged 3
|
|
|
|
|
|
#endif // __ZQUERY_HPP__
|