Hallo ihr,
ich hab gerade ein System (JOPS_GLOW) geaddet und es kommen keine Fehler bis auf diesen hier:
Quote:
|
..\Source\Neuz\DPClient.cpp(994): error C2196: case value '34915' already used
|
Demnach müsste ja irgendwas doppelt sein, und schon vorkommen.
Aber in DpClient.h ist schonmal nix doppelt.
Such ich in der falschen Datei?
Hier die Auszüge aus der .h:
Quote:
#ifdef __JOPS_GLOW
void OnUpdateGlow( OBJID objid, CAr & ar );
#endif //__JOPS_GLOW
#ifdef __JOPS_GLOW
void SendGlowChange( int iGlowBody, int iGlowHandLeft, int iGlowHandRight, int iGlowArmLeft, int iGlowArmRight, int iGlowLegLeft, int iGlowLegRight);
#endif //__JOPS_GLOW
|
Zeile 994 in .cpp:
#ifdef __JOPS_GLOW
case SNAPSHOTTYPE_UPDATEGLOW: OnUpdateGlow( objid, ar ); break;
#endif //__JOPS_GLOW
Danke im Voraus