#ifndef _MONO_CLI_STRING_ICALLS_H_ #define _MONO_CLI_STRING_ICALLS_H_ /* * string-icalls.h: String internal calls for the corlib * * Author: * Patrik Torstensson (patrik.torstensson@labs2.com) * * (C) 2001 Ximian, Inc. */ #include #include #include #include "mono/utils/mono-compiler.h" void ves_icall_System_String_ctor_RedirectToCreateString (void) MONO_INTERNAL; MonoString * ves_icall_System_String_InternalAllocateStr (gint32 length) MONO_INTERNAL; MonoString * ves_icall_System_String_InternalIntern (MonoString *str) MONO_INTERNAL; MonoString * ves_icall_System_String_InternalIsInterned (MonoString *str) MONO_INTERNAL; int ves_icall_System_String_GetLOSLimit (void) MONO_INTERNAL; void ves_icall_System_String_InternalSetLength (MonoString *str, gint32 new_length) MONO_INTERNAL; #endif /* _MONO_CLI_STRING_ICALLS_H_ */