Changeset 5472 for trunk/src/winmm/mci.cpp
- Timestamp:
- Apr 4, 2001, 11:05:50 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/mci.cpp
r4748 r5472 1 /* $Id: mci.cpp,v 1. 6 2000-12-03 22:18:17sandervl Exp $ */1 /* $Id: mci.cpp,v 1.7 2001-04-04 09:02:16 sandervl Exp $ */ 2 2 3 3 /* … … 357 357 #define SET_EIP(ptr) /* nothing */ 358 358 #endif /* __GNUC__ */ 359 360 /***********************************************************************361 * HEAP_strdupA362 */363 static LPSTR HEAP_strdupA( HANDLE heap, DWORD flags, LPCSTR str )364 {365 LPSTR p = (LPSTR) HeapAlloc( heap, flags, strlen(str) + 1 );366 if(p) {367 //SET_EIP(p);368 strcpy( p, str );369 }370 return p;371 }372 359 373 360
Note:
See TracChangeset
for help on using the changeset viewer.