--
[ Picked text/plain from multipart/alternative ]
what I've always done is

#ifndef CLIENT_DLL
    SendPropStringT( SENDINFO( m_iszName ) ),
#else
    RecvPropString( RECVINFO( m_iszName ) ),
#endif

with string definitions as such

#ifndef CLIENT_DLL
    CNetworkVar( string_t, m_iszName );
#else
    char m_iszName[256];
#endif

it work sbut it's a pain because the client is limited in size.
--

_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlcoders

Reply via email to