|
From: <gn...@us...> - 2003-11-06 23:41:53
|
Update of /cvsroot/clicksaver/ClickSaverSrc/AODB
In directory sc8-pr-cvs1:/tmp/cvs-serv5733/AODB
Modified Files:
AODB.c
Log Message:
Version 2.3.0 beta 2 - Fixed issues with 15.2.0 and added an option for auto expand team missions
Index: AODB.c
===================================================================
RCS file: /cvsroot/clicksaver/ClickSaverSrc/AODB/AODB.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AODB.c 21 Feb 2003 12:11:49 -0000 1.1
--- AODB.c 6 Nov 2003 23:41:50 -0000 1.2
***************
*** 20,31 ****
{
COUNT iErrVal;
- char strDLLpath[MAX_PATH];
/* Build full path/file */
- wsprintf(strDLLpath, "%s%s", strAOFolder, "\\ctreestd.dll");
wsprintf(strAODBpath, "%s%s", strAOFolder, "\\cd_image\\data\\db\\ResourceDatabase");
/* Link the Ctree DLL */
! if (!CTreeStd_LinkDll(strDLLpath))
{
iErrVal = AODB_ERR_NODLL;
--- 20,29 ----
{
COUNT iErrVal;
/* Build full path/file */
wsprintf(strAODBpath, "%s%s", strAOFolder, "\\cd_image\\data\\db\\ResourceDatabase");
/* Link the Ctree DLL */
! if (!CTreeStd_LinkDll("ctreestd.dll"))
{
iErrVal = AODB_ERR_NODLL;
|