]>
git.saurik.com Git - wxWidgets.git/blob - utils/HelpGen/src/wx_extra_imps.cpp
7 // For compilers that support precompilation, includes "wx.h".
17 copystring (const char *s
)
19 if (s
== NULL
) s
= "";
20 size_t len
= strlen (s
) + 1;
22 char *news
= new char[len
];
23 memcpy (news
, s
, len
); // Should be the fastest
28 const char *wxGetTranslation(const char *str
)