Subversion Repositories WoWGM

Rev

Rev 31 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31 Rev 32
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
 
5
	void*         _vfptr;
6
	void*         _vfptr;
6
	unsigned int  m_refcnt;
7
	unsigned int  m_refcnt;
7
	char*         m_string;
8
	char*         m_string;
8
};
9
};
9
 
10
 
10
#endif// _RCSTRING_H_
11
#endif// _RCSTRING_H_
-
 
12