13 lines
247 B
C++
13 lines
247 B
C++
#include <midiwrt/mushdr.hpp>
|
|
|
|
String MUSHeader::headerID(void)const
|
|
{
|
|
String headerIDString;
|
|
|
|
headerIDString.reserve(sizeof(mID));
|
|
::memset(headerIDString,0,sizeof(mID));
|
|
::memcpy(headerIDString,mID,sizeof(mID)-1);
|
|
return headerIDString;
|
|
}
|
|
|