diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_core/mir_core.def | 2 | ||||
-rw-r--r-- | src/mir_core/mir_core_10.vcxproj | 2 | ||||
-rw-r--r-- | src/mir_core/utils.cpp | 16 |
3 files changed, 19 insertions, 1 deletions
diff --git a/src/mir_core/mir_core.def b/src/mir_core/mir_core.def index 43dd94d7ac..2939f2feda 100644 --- a/src/mir_core/mir_core.def +++ b/src/mir_core/mir_core.def @@ -124,3 +124,5 @@ db_set_w @121 db_set_ws @122
UnloadCoreModule @123
Thread_SetName @124
+replaceStr @125
+replaceStrW @126
\ No newline at end of file diff --git a/src/mir_core/mir_core_10.vcxproj b/src/mir_core/mir_core_10.vcxproj index 03ea9c52e1..e5f452eb61 100644 --- a/src/mir_core/mir_core_10.vcxproj +++ b/src/mir_core/mir_core_10.vcxproj @@ -48,7 +48,7 @@ <ClCompile Include="utils.cpp" />
</ItemGroup>
<PropertyGroup Label="Globals">
- <ProjectName>Mir_core</ProjectName>
+ <ProjectName>mir_core</ProjectName>
<ProjectGuid>{D9EFEA4B-B817-4DE1-BD62-68A5DB8F5F60}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
diff --git a/src/mir_core/utils.cpp b/src/mir_core/utils.cpp index 4ebba2f293..12aad9d8a9 100644 --- a/src/mir_core/utils.cpp +++ b/src/mir_core/utils.cpp @@ -23,6 +23,22 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "commonheaders.h"
+MIR_CORE_DLL(char*) replaceStr( char* &dest, const char *src )
+{
+ if ( dest != NULL )
+ mir_free( dest );
+
+ return dest = ( src != NULL ) ? mir_strdup( src ) : NULL;
+}
+
+MIR_CORE_DLL(WCHAR*) replaceStrW( WCHAR* &dest, const WCHAR *src )
+{
+ if ( dest != NULL )
+ mir_free( dest );
+
+ return dest = ( src != NULL ) ? mir_wstrdup( src ) : NULL;
+}
+
MIR_CORE_DLL(char*) rtrim(char* str)
{
if (str == NULL)
|