public RESULT getPitch(ref float pitch, EVENT_PITCHUNITS units)
 {
     return FMOD_Event_GetPitch(eventraw, ref pitch, units);
 }
 public RESULT setPitch(float pitch, EVENT_PITCHUNITS units)
 {
     return FMOD_EventCategory_SetPitch(eventcategoryraw, pitch, units);
 }
 private static extern RESULT FMOD_EventCategory_SetPitch(IntPtr eventcategory, float pitch, EVENT_PITCHUNITS units);
 private static extern RESULT FMOD_Event_SetPitch(IntPtr _event, float pitch, EVENT_PITCHUNITS units);