Subversion Repositories WoWGM

Rev

Rev 3 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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