1 package speech.types; 3 4 import com4j.*; 5 6 9 @IID("{6450336F-7D49-4CED-8097-49D6DEE37294}") 10 public interface ISpeechBaseStream extends Com4jObject { 11 14 @VTID(7) 15 ISpeechAudioFormat format(); 16 17 20 @VTID(8) 21 void format( 22 ISpeechAudioFormat audioFormat); 23 24 27 @VTID(9) 28 int read( 29 java.lang.Object buffer, 30 int numberOfBytes); 31 32 35 @VTID(10) 36 int write( 37 java.lang.Object buffer); 38 39 42 @VTID(11) 43 java.lang.Object seek( 44 java.lang.Object position, 45 SpeechStreamSeekPositionType origin); 46 47 } 48 | Popular Tags |