KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpDataKey


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 /**
7  * ISpDataKey Interface
8  */

9 @IID("{14056581-E16C-11D2-BB90-00C04F8EE6C0}")
10 public interface ISpDataKey extends Com4jObject {
11     @VTID(3)
12     void setData(
13         @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszValueName,
14         int cbData,
15         Holder<Byte JavaDoc> pData);
16
17     @VTID(4)
18     void getData(
19         @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszValueName,
20         Holder<Integer JavaDoc> pcbData,
21         Holder<Byte JavaDoc> pData);
22
23     @VTID(5)
24     void setStringValue(
25         @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszValueName,
26         @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszValue);
27
28         @VTID(7)
29         void setDWORD(
30             @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszValueName,
31             int dwValue);
32
33         @VTID(8)
34         void getDWORD(
35             @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszValueName,
36             Holder<Integer JavaDoc> pdwValue);
37
38         @VTID(9)
39         void openKey(
40             @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszSubKeyName,
41             Holder<ISpDataKey> ppSubKey);
42
43         @VTID(10)
44         void createKey(
45             @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszSubKey,
46             Holder<ISpDataKey> ppSubKey);
47
48         @VTID(11)
49         void deleteKey(
50             @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszSubKey);
51
52         @VTID(12)
53         void deleteValue(
54             @MarshalAs(NativeType.Unicode) java.lang.String JavaDoc pszValueName);
55
56             }
57
Popular Tags