33 lines
992 B
C++
33 lines
992 B
C++
//=========================================================================
|
|
// ToolDLLb.cpp : base of Tools DLL
|
|
// This is a part of the CPA project.
|
|
//
|
|
// Version 1.0
|
|
// Creation date 10/12/96
|
|
// Revision date
|
|
//
|
|
// (c) Ubi Studio 1996
|
|
//
|
|
// DO NOT MODIFY THAT FILE. IF SOMETHING NEEDS TO BE CHANGE, PLEASE CONTACT
|
|
// VINCENT GRECO OR CHRISTOPHE BEAUDET.
|
|
//=========================================================================
|
|
|
|
#include "stdafx.h"
|
|
#ifdef ACTIVE_EDITOR
|
|
#include "acp_base.h"
|
|
|
|
#include "itf/ToolDLLb.hpp"
|
|
#include "itf/CPAMWorl.hpp"
|
|
|
|
void CPA_ToolDLLBase::fn_vSetReceivingWindowMessages(BOOL _bWantToReceive /*=TRUE*/)
|
|
{
|
|
GetMainWorld()->fn_vSetReceivingWindowMsgState(this,_bWantToReceive);
|
|
}
|
|
|
|
// TO Want/won't to receive Evt Editor Messages
|
|
void CPA_ToolDLLBase::fn_vSetReceivingEvtEditorMessages(BOOL _bWantToReceive /*=TRUE*/)
|
|
{
|
|
GetMainWorld()->fn_vSetReceivingEvtEditorMsgState(this,_bWantToReceive);
|
|
}
|
|
|
|
#endif //ACTIVE_EDITOR
|