Rewrote CString

This commit is contained in:
David Anderson
2004-08-13 08:46:04 +00:00
parent 2a00a62bcb
commit 955fcb8549
32 changed files with 366 additions and 305 deletions

View File

@@ -74,7 +74,7 @@ public:
{
private:
// plugin info
String m_Path;
CString m_Path;
PLUG_STATUS m_Status;
plugin_info_t *m_Info;
// Function tables
@@ -104,8 +104,8 @@ public:
inline void SetInfo(plugin_info_t *newInfo)
{ m_Info = newInfo; }
inline const char * GetPath() const
{ return m_Path.str(); }
inline const char * GetPath()
{ return m_Path.c_str(); }
inline const META_FUNCTIONS &GetMetaFunctions() const
{ return m_MetaFuncTable; }