Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1:/tmp/cvs-serv19416
Modified Files:
Timing.cpp boats.cpp item_flatstore.cpp items.cpp items.h
spawnregions.cpp speech.cpp uobject.cpp wolf.dsp wolf.dsw
Log Message:
Reduced memory usage for cItem
Index: Timing.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/Timing.cpp,v
retrieving revision 1.173
retrieving revision 1.174
diff -C2 -d -r1.173 -r1.174
*** Timing.cpp 21 Aug 2003 05:04:35 -0000 1.173
--- Timing.cpp 23 Aug 2003 01:03:30 -0000 1.174
***************
*** 708,722 ****
// Move Boats
case 117:
- if( pItem->tags().get( "tiller" ).isValid() &&
- ( pItem->gatetime() <= currenttime ) )
{
! cBoat* pBoat = dynamic_cast< cBoat* >( FindItemBySerial( pItem->tags().get( "boatserial" ).toInt() ) );
! if( pBoat )
{
! pBoat->move();
! pItem->setGateTime((UINT32)( currenttime + (double)( SrvParams->boatSpeed() * MY_CLOCKS_PER_SEC ) ));
}
}
- break;
};
}
--- 708,725 ----
// Move Boats
case 117:
{
! bool ok = false;
! if( pItem->tags().get( "tiller" ).isValid() &&
! pItem->tags().get("gatetime").toInt(&ok) <= currenttime && ok )
{
! cBoat* pBoat = dynamic_cast< cBoat* >( FindItemBySerial( pItem->tags().get( "boatserial" ).toInt() ) );
! if( pBoat )
! {
! pBoat->move();
! pItem->tags().set("gatetime", (int)( currenttime + (double)( SrvParams->boatSpeed() * MY_CLOCKS_PER_SEC ) ) );
! }
}
+ break;
}
};
}
Index: boats.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/boats.cpp,v
retrieving revision 1.107
retrieving revision 1.108
diff -C2 -d -r1.107 -r1.108
*** boats.cpp 20 Aug 2003 17:10:48 -0000 1.107
--- boats.cpp 23 Aug 2003 01:03:30 -0000 1.108
***************
*** 158,162 ****
pTiller->tags().set( "boatserial", this->serial() );
this->itemserials[ TILLER ] = pTiller->serial();
! pTiller->setGateTime((unsigned int)(uiCurrentTime + (double)(SrvParams->boatSpeed()*MY_CLOCKS_PER_SEC)));
}
--- 158,162 ----
pTiller->tags().set( "boatserial", this->serial() );
this->itemserials[ TILLER ] = pTiller->serial();
! pTiller->tags().set("gatetime", (int)(uiCurrentTime + (double)(SrvParams->boatSpeed()*MY_CLOCKS_PER_SEC)));
}
Index: item_flatstore.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/item_flatstore.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** item_flatstore.cpp 20 Aug 2003 17:10:48 -0000 1.16
--- item_flatstore.cpp 23 Aug 2003 01:03:31 -0000 1.17
***************
*** 259,271 ****
output->chunkData( ITEM_DISABLED, (int)disabled() );
- if( !spawnregion().isNull() && !spawnregion().isEmpty() )
- output->chunkData( ITEM_SPAWNREGION, spawnregion().utf8().data() );
-
if( good() != -1 )
output->chunkData( ITEM_GOOD, (int)good() );
- if( !description().isNull() && !description().isEmpty() )
- output->chunkData( ITEM_DESCRIPTION, description().utf8().data() );
-
if( accuracy() != 100 )
output->chunkData( ITEM_ACCURACY, (unsigned short)accuracy() );
--- 259,265 ----
***************
*** 470,483 ****
break;
- case ITEM_SPAWNREGION:
- spawnregion_ = QString::fromUtf8( input->readString() );
- break;
-
case ITEM_GOOD:
input->readInt( good_ );
- break;
-
- case ITEM_DESCRIPTION:
- desc_ = QString::fromUtf8( input->readString() );
break;
--- 464,469 ----
Index: items.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/items.cpp,v
retrieving revision 1.332
retrieving revision 1.333
diff -C2 -d -r1.332 -r1.333
*** items.cpp 21 Aug 2003 05:04:35 -0000 1.332
--- items.cpp 23 Aug 2003 01:03:31 -0000 1.333
***************
*** 74,79 ****
// constructor
cItem::cItem(): container_(0), totalweight_(0), incognito(false),
! rndvaluerate_(0), dooropen_(0),gatetime_(0),gatenumber_(-1),
! timeused_last(0), sellprice_( 0 ), buyprice_( 0 ), restock_( 1 ), antispamtimer_( 0 )
{
Init( false );
--- 74,79 ----
// constructor
cItem::cItem(): container_(0), totalweight_(0), incognito(false),
! rndvaluerate_(0), dooropen_(0),timeused_last(0), sellprice_( 0 ),
! buyprice_( 0 ), restock_( 1 ), antispamtimer_( 0 )
{
Init( false );
***************
*** 128,133 ****
this->speed_=src.speed_;
this->magic_ = src.magic_;
- this->gatetime_ = src.gatetime_;
- this->gatenumber_ = src.gatenumber_;
this->decaytime_ = src.decaytime_;
this->setOwnSerialOnly(src.ownSerial());
--- 128,131 ----
***************
*** 142,147 ****
this->time_unused=src.time_unused;
this->timeused_last=getNormalizedTime();
- this->setSpawnRegion( src.spawnregion() );
- this->desc_ = src.desc_;
// We're *NOT* copying the contents over
--- 140,143 ----
***************
*** 514,520 ****
addField("restock", restock_);
addField("disabled", disabled_);
- addStrField("spawnregion", spawnregion_);
addField("good", good_);
- addStrField("description", desc_);
addField("accuracy", accuracy_);
--- 510,514 ----
***************
*** 653,658 ****
this->speed_=0; //The speed of the weapon
this->magic_ = 0; // 0=Default as stored in client, 1=Always movable, 2=Never movable, 3=Owner movable.
- this->gatetime_= 0;
- this->gatenumber_= -1;
this->decaytime_ = 0;
this->setOwnSerialOnly(-1);
--- 647,650 ----
***************
*** 665,669 ****
this->time_unused = 0;
this->timeused_last=getNormalizedTime();
- this->spawnregion_ = QString::null;
this->accuracy_ = 100;
}
--- 657,660 ----
***************
*** 2080,2086 ****
restock_ = atoi( result[offset++] );
disabled_ = atoi( result[offset++] );
- spawnregion_ = result[offset++];
good_ = atoi( result[offset++] );
- desc_ = result[offset++];
accuracy_ = atoi( result[offset++] );
--- 2071,2075 ----
***************
*** 2094,2098 ****
{
cUObject::buildSqlString( fields, tables, conditions );
! fields.push_back( "items.id,items.name,items.name2,items.creator,items.sk_name,items.color,items.cont,items.layer,items.type,items.type2,items.offspell,items.more1,items.more2,items.more3,items.more4,items.morex,items.morey,items.morez,items.amount,items.doordir,items.dye,items.decaytime,items.att,items.def,items.hidamage,items.lodamage,items.st,items.time_unused,items.weight,items.hp,items.maxhp,items.rank,items.st2,items.dx,items.dx2,items.intelligence,items.intelligence2,items.speed,items.poisoned,items.magic,items.owner,items.visible,items.spawn,items.priv,items.sellprice,items.buyprice,items.restock,items.disabled,items.spawnregion,items.good,items.description,items.accuracy" ); // for now! later on we should specify each field
tables.push_back( "items" );
conditions.push_back( "uobjectmap.serial = items.serial" );
--- 2083,2087 ----
{
cUObject::buildSqlString( fields, tables, conditions );
! fields.push_back( "items.id,items.name,items.name2,items.creator,items.sk_name,items.color,items.cont,items.layer,items.type,items.type2,items.offspell,items.more1,items.more2,items.more3,items.more4,items.morex,items.morey,items.morez,items.amount,items.doordir,items.dye,items.decaytime,items.att,items.def,items.hidamage,items.lodamage,items.st,items.time_unused,items.weight,items.hp,items.maxhp,items.rank,items.st2,items.dx,items.dx2,items.intelligence,items.intelligence2,items.speed,items.poisoned,items.magic,items.owner,items.visible,items.spawn,items.priv,items.sellprice,items.buyprice,items.restock,items.disabled,items.good,items.accuracy" ); // for now! later on we should specify each field
tables.push_back( "items" );
conditions.push_back( "uobjectmap.serial = items.serial" );
***************
*** 2307,2311 ****
else SET_INT_PROPERTY( "health", hp_ )
else SET_INT_PROPERTY( "maxhealth", maxhp_ )
- else SET_STR_PROPERTY( "spawnregion", spawnregion_ )
else SET_INT_PROPERTY( "owner", ownserial_ )
--- 2296,2299 ----
***************
*** 2404,2409 ****
return 0;
}
- else SET_INT_PROPERTY( "gatetime", gatetime_ )
- else SET_INT_PROPERTY( "gatenumber", gatenumber_ )
else SET_INT_PROPERTY( "decaytime", decaytime_ )
--- 2392,2395 ----
***************
*** 2439,2443 ****
else SET_INT_PROPERTY( "rndvaluerate", rndvaluerate_ )
else SET_INT_PROPERTY( "madewith", madewith_ )
- else SET_STR_PROPERTY( "description", desc_ )
else SET_INT_PROPERTY( "incognito", incognito )
else SET_INT_PROPERTY( "timeunused", time_unused )
--- 2425,2428 ----
***************
*** 2526,2530 ****
else GET_PROPERTY( "health", hp_ )
else GET_PROPERTY( "maxhealth", maxhp_ )
- else GET_PROPERTY( "spawnregion", spawnregion_ )
else GET_PROPERTY( "owner", owner() )
else GET_PROPERTY( "totalweight", totalweight_ )
--- 2511,2514 ----
***************
*** 2563,2568 ****
else GET_PROPERTY( "intelligence", in_ )
else GET_PROPERTY( "intelligence2", in2_ )
- else GET_PROPERTY( "gatetime", (int)gatetime_ )
- else GET_PROPERTY( "gatenumber", gatenumber_ )
else GET_PROPERTY( "decaytime", (int)decaytime_ )
--- 2547,2550 ----
***************
*** 2582,2586 ****
else GET_PROPERTY( "rndvaluerate", rndvaluerate_ )
else GET_PROPERTY( "madewith", madewith_ )
- else GET_PROPERTY( "description", desc_ )
else GET_PROPERTY( "incognito", incognito ? 1 : 0 )
else GET_PROPERTY( "timeunused", (int)time_unused )
--- 2564,2567 ----
Index: items.h
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/items.h,v
retrieving revision 1.167
retrieving revision 1.168
diff -C2 -d -r1.167 -r1.168
*** items.h 21 Aug 2003 05:04:35 -0000 1.167
--- items.h 23 Aug 2003 01:03:31 -0000 1.168
***************
*** 54,58 ****
Q_PROPERTY ( ushort restock READ restock WRITE setRestock )
Q_PROPERTY ( uchar layer READ layer WRITE setLayer )
- Q_PROPERTY ( QString spawnregion READ spawnregion WRITE setSpawnRegion )
Q_PROPERTY ( int totalweight READ totalweight WRITE setTotalweight )
Q_PROPERTY ( ushort accuracy READ accuracy WRITE setAccuracy )
--- 54,57 ----
***************
*** 78,88 ****
Q_PROPERTY ( short intelligenceReq READ intelligenceReq WRITE setIntelligenceReq )
Q_PROPERTY ( uchar magic READ magic WRITE setMagic )
- Q_PROPERTY ( uint gatetime READ gatetime WRITE setGateTime )
- Q_PROPERTY ( int gatenumber READ gatenumber WRITE setGateNumber )
Q_PROPERTY ( uint decaytime READ decaytime WRITE setDecayTime )
Q_PROPERTY ( uint disabled READ disabled WRITE setDisabled )
Q_PROPERTY ( uint poisoned READ poisoned WRITE setPoisoned )
Q_PROPERTY ( int rank READ rank WRITE setRank )
- Q_PROPERTY ( QString description READ description WRITE setDescription )
Q_PROPERTY ( QString creator READ creator WRITE setCreator )
Q_PROPERTY ( int ownserial READ ownSerial WRITE SetOwnSerial )
--- 77,84 ----
***************
*** 136,140 ****
SI16 hp() const { return hp_; } // Number of hitpoints an item has
SI16 maxhp() const { return maxhp_; } // Maximum number of hitpoints an item has
- QString spawnregion() const { return spawnregion_; }
bool corpse() const { return priv_&0x40; } // Is the item a corpse
bool newbie() const { return priv_&0x02; } // Is the Item Newbie
--- 132,135 ----
***************
*** 167,177 ****
short intelligenceMod() const { return in2_; }
uchar magic() const { return magic_; }
- uint gatetime() const { return gatetime_; }
- int gatenumber() const { return gatenumber_; }
uint decaytime() const { return decaytime_; }
uint disabled() const { return disabled_; }
uint poisoned() const { return poisoned_; }
int rank() const { return rank_; }
- QString description() const { return desc_; }
QString creator() const { return creator_;}
uchar visible() const { return visible_;}
--- 162,169 ----
***************
*** 225,229 ****
void setHp( SI16 nValue ) { hp_ = nValue; flagChanged(); changed( TOOLTIP );};
void setMaxhp( SI16 nValue ) { maxhp_ = nValue; flagChanged(); changed( TOOLTIP );};
- void setSpawnRegion( const QString& nValue ) { spawnregion_ = nValue; flagChanged();};
void setCorpse( bool nValue ) { ( nValue ) ? priv_ |= 0x40 : priv_ &= 0xBF; flagChanged(); changed( TOOLTIP );}
void setNewbie( bool nValue ) { ( nValue ) ? priv_ |= 0x02 : priv_ &= 0xFD; flagChanged(); changed( TOOLTIP );}
--- 217,220 ----
***************
*** 232,236 ****
void setAntispamtimer ( uint data ) { antispamtimer_ = data; flagChanged();}
void setAccuracy( ushort data ) { accuracy_ = data; flagChanged();}
- void setDescription( const QString& d ) { desc_ = d; flagChanged(); changed( TOOLTIP );}
void setCreator( const QString& d ) { creator_ = d; flagChanged(); changed( TOOLTIP );}
--- 223,226 ----
***************
*** 263,268 ****
void setIntelligenceMod( short data ) { in2_ = data; flagChanged(); changed( TOOLTIP );}
void setMagic( uchar data ) { magic_ = data; flagChanged(); changed( TOOLTIP );}
- void setGateTime( uint data ) { gatetime_ = data; flagChanged();}
- void setGateNumber( int data ) { gatenumber_ = data; flagChanged();}
void setDecayTime( uint data ) { decaytime_ = data; }
void setBuyprice( int data ) { buyprice_ = data; flagChanged(); changed( TOOLTIP );}
--- 253,256 ----
***************
*** 396,400 ****
SI16 hp_;
SI16 maxhp_;
- QString spawnregion_;
int totalweight_;
uint antispamtimer_;
--- 384,387 ----
***************
*** 425,430 ****
short in2_; // The intelligence the item gives
uchar magic_; // 0=Default as stored in client, 1=Always movable, 2=Never movable, 3=Owner movable, 4=Locked Down
- uint gatetime_;
- int gatenumber_;
uint decaytime_;
uint disabled_; //Item is disabled, cant trigger.
--- 412,415 ----
***************
*** 436,440 ****
// RANK 10 --> 10*10=100% this item has no malus! RANK 10 is automatically setted if you select RANKSYSTEM 0.
// Vars: LODAMAGE,HIDAMAGE,ATT,DEF,HP,MAXHP
- QString desc_;
QString creator_; // Store the name of the player made this item
SERIAL ownserial_;
--- 421,424 ----
Index: spawnregions.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/spawnregions.cpp,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** spawnregions.cpp 20 Aug 2003 17:10:48 -0000 1.43
--- spawnregions.cpp 23 Aug 2003 01:03:31 -0000 1.44
***************
*** 270,274 ****
pi->moveTo( pos );
this->itemSerials_.push_back( pi->serial() );
! pi->setSpawnRegion( this->name_ );
}
}
--- 270,274 ----
pi->moveTo( pos );
this->itemSerials_.push_back( pi->serial() );
! // pi->setSpawnRegion( this->name_ );
}
}
***************
*** 313,317 ****
pi->setPos( pos );
this->itemSerials_.push_back( pi->serial() );
! pi->setSpawnRegion( this->name_ );
}
}
--- 313,317 ----
pi->setPos( pos );
this->itemSerials_.push_back( pi->serial() );
! // pi->setSpawnRegion( this->name_ );
}
}
Index: speech.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/speech.cpp,v
retrieving revision 1.152
retrieving revision 1.153
diff -C2 -d -r1.152 -r1.153
*** speech.cpp 20 Aug 2003 17:10:48 -0000 1.152
--- speech.cpp 23 Aug 2003 01:03:31 -0000 1.153
***************
*** 97,101 ****
// Describing an item
case cPlayer::enDescription:
! pItem->setDescription( speech );
socket->sysMessage( tr( "This item is now described as %1." ).arg( speech ) );
pChar->setInputMode(cPlayer::enNone);
--- 97,101 ----
// Describing an item
case cPlayer::enDescription:
! socket->sysMessage( "Description is not used anywhere :( not implemented right now" );
socket->sysMessage( tr( "This item is now described as %1." ).arg( speech ) );
pChar->setInputMode(cPlayer::enNone);
Index: uobject.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/uobject.cpp,v
retrieving revision 1.107
retrieving revision 1.108
diff -C2 -d -r1.107 -r1.108
*** uobject.cpp 21 Aug 2003 05:04:35 -0000 1.107
--- uobject.cpp 23 Aug 2003 01:03:31 -0000 1.108
***************
*** 78,81 ****
--- 78,82 ----
this->multis_ = src.multis_;
this->name_ = src.name_;
+ this->pos_ = src.pos_;
this->free = src.free;
this->changed( TOOLTIP );
Index: wolf.dsp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/wolf.dsp,v
retrieving revision 1.203
retrieving revision 1.204
diff -C2 -d -r1.203 -r1.204
*** wolf.dsp 20 Aug 2003 17:12:53 -0000 1.203
--- wolf.dsp 23 Aug 2003 01:03:31 -0000 1.204
***************
*** 1,23 ****
# Microsoft Developer Studio Project File - Name="wolf" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
! # ** NICHT BEARBEITEN **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=wolf - Win32 Debug
! !MESSAGE Dies ist kein gültiges Makefile. Zum Erstellen dieses Projekts mit NMAKE
! !MESSAGE verwenden Sie den Befehl "Makefile exportieren" und führen Sie den Befehl
!MESSAGE
!MESSAGE NMAKE /f "wolf.mak".
!MESSAGE
! !MESSAGE Sie können beim Ausführen von NMAKE eine Konfiguration angeben
! !MESSAGE durch Definieren des Makros CFG in der Befehlszeile. Zum Beispiel:
!MESSAGE
!MESSAGE NMAKE /f "wolf.mak" CFG="wolf - Win32 Debug"
!MESSAGE
! !MESSAGE Für die Konfiguration stehen zur Auswahl:
!MESSAGE
! !MESSAGE "wolf - Win32 Release" (basierend auf "Win32 (x86) Console Application")
! !MESSAGE "wolf - Win32 Debug" (basierend auf "Win32 (x86) Console Application")
!MESSAGE
--- 1,23 ----
# Microsoft Developer Studio Project File - Name="wolf" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
! # ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=wolf - Win32 Debug
! !MESSAGE This is not a valid makefile. To build this project using NMAKE,
! !MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "wolf.mak".
!MESSAGE
! !MESSAGE You can specify a configuration when running NMAKE
! !MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "wolf.mak" CFG="wolf - Win32 Debug"
!MESSAGE
! !MESSAGE Possible choices for configuration are:
!MESSAGE
! !MESSAGE "wolf - Win32 Release" (based on "Win32 (x86) Console Application")
! !MESSAGE "wolf - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
***************
*** 26,30 ****
# PROP Scc_ProjName "wolf"
# PROP Scc_LocalPath "."
! CPP=cl.exe
RSC=rc.exe
--- 26,30 ----
# PROP Scc_ProjName "wolf"
# PROP Scc_LocalPath "."
! CPP=xicl6.exe
RSC=rc.exe
***************
*** 50,54 ****
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
! LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib $(QTDIR)\lib\qt-mt312.lib libmysql.lib flatstore.lib /nologo /subsystem:console /map /machine:I386 /nodefaultlib:"libcmt MSVCRTD" /out:"D:\wolfpack\wolfpack.exe" /libpath:"lib\ZThread\lib" /libpath:"lib\Python\lib" /libpath:"lib\bugreport\lib" /libpath:"flatstore\Release" /opt:ref /opt:nowin98
--- 50,54 ----
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
! LINK32=xilink6.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib $(QTDIR)\lib\qt-mt312.lib libmysql.lib flatstore.lib /nologo /subsystem:console /map /machine:I386 /nodefaultlib:"libcmt MSVCRTD" /out:"D:\wolfpack\wolfpack.exe" /libpath:"lib\ZThread\lib" /libpath:"lib\Python\lib" /libpath:"lib\bugreport\lib" /libpath:"flatstore\Release" /opt:ref /opt:nowin98
***************
*** 75,81 ****
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
! LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
! # ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib $(QTDIR)\lib\qt-mt312.lib libmysql.lib flatstore.lib /nologo /version:12.9 /subsystem:console /map /debug /machine:I386 /out:"..\Wolfpack.exe" /pdbtype:sept /libpath:"lib\bugreport\lib" /libpath:"flatstore\Debug"
# SUBTRACT LINK32 /pdb:none
--- 75,81 ----
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
! LINK32=xilink6.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
! # ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib $(QTDIR)\lib\qt-mt320.lib libmysql.lib flatstore.lib /nologo /version:12.9 /subsystem:console /map /debug /machine:I386 /out:"..\Wolfpack.exe" /pdbtype:sept /libpath:"lib\bugreport\lib" /libpath:"flatstore\Debug"
# SUBTRACT LINK32 /pdb:none
Index: wolf.dsw
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/wolf.dsw,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** wolf.dsw 12 Jun 2003 02:19:38 -0000 1.39
--- wolf.dsw 23 Aug 2003 01:03:31 -0000 1.40
***************
*** 24,30 ****
Package=<4>
{{{
- Begin Project Dependency
- Project_Dep_Name pythoncore
- End Project Dependency
}}}
--- 24,27 ----
|