Subversion Repositories WoWGM

Rev

Rev 31 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 tristanc 1
#ifndef  _RCSTRING_H_
2
#define  _RCSTRING_H_
3
 
4
struct RCString {
32 tristanc 5
 
31 tristanc 6
	void*         _vfptr;
7
	unsigned int  m_refcnt;
8
	char*         m_string;
3 tristanc 9
};
10
 
11
#endif// _RCSTRING_H_
32 tristanc 12