This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Wednesday, October 6, 2010 11:05:10 PM(UTC)
Groups: Registered
Posts: 33
i am using lead tool 16.5
Error 1 fatal error C1189: #error : LEADTOOLS Vxx_CONFIG not found! c:\program files\lead technologies\leadtools 16.5\include\ltver.h 20
i am getting this error when i try to follow tutorial
Loading and Saving Images Using Databases (C++ 5.0 and later)
should i make any change in this file
/*************************************************************
Ltver.h - LEADTOOLS version definition
Copyright (c) 1991-2008 LEAD Technologies, Inc.
All Rights Reserved.
*************************************************************/
#if
!defined(LTVER_H)
#define
LTVER_H
#if
defined(LTV15_CONFIG)
#define LTVER_ 1500
#define L_VER_DESIGNATOR
#elif
defined(LTV16_CONFIG)
#define LTVER_ 1600
#define L_VER_DESIGNATOR
#else
#error
LEADTOOLS Vxx_CONFIG not found!
#endif
// #if defined(LTV15_CONFIG)
#if
LTVER_ >= 1600
#define LEADTOOLS_V16_OR_LATER
#endif
#endif
// #if !defined(LTVER_H)
#2
Posted
:
Thursday, October 7, 2010 6:14:22 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
You should NOT modify our headers and classes. In order to make your project work, you need to add this line at the beginning of your application before calling or including any LEADTOOLS header to it:
=+++++++++++=
#defined LTV16_CONFIG
=+++++++++++=
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.