Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 22 of file oslist.c.
Referenced by InitOperatingSystemList().
{ PSTR Dest; if (!Source) return NULL; Dest = MmHeapAlloc(strlen(Source) + 1); if (Dest) { strcpy(Dest, Source); } return Dest; }