-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathqsdk.wechat.android.pas
4571 lines (3834 loc) · 176 KB
/
qsdk.wechat.android.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit qsdk.wechat.android;
{ ******************************************************* }
{ QSDK.wechat.android 1.0 }
{ Interfaces for wechat android sdk 3.1.1 }
{ This is a modified sdk library for wechat,not origin }
{ ******************************************************* }
interface
uses AndroidAPI.JNIBridge, AndroidAPI.JNI.JavaTypes,
AndroidAPI.JNI.GraphicsContentViewText, AndroidAPI.JNI.OS,
AndroidAPI.JNI.App, AndroidAPI.JNI.Util;
type
JWXPayEntryActivity = interface; //
JBuild = interface; // com.tencent.mm.sdk.constants.Build
JConstantsAPI_Token = interface;
// com.tencent.mm.sdk.constants.ConstantsAPI$Token
JConstantsAPI_WXApp = interface;
// com.tencent.mm.sdk.constants.ConstantsAPI$WXApp
JConstantsAPI = interface; // com.tencent.mm.sdk.constants.ConstantsAPI
JDiffDevOAuthFactory = interface;
// com.tencent.mm.sdk.diffdev.DiffDevOAuthFactory
JIDiffDevOAuth = interface; // com.tencent.mm.sdk.diffdev.IDiffDevOAuth
JOAuthErrCode = interface; // com.tencent.mm.sdk.diffdev.OAuthErrCode
JOAuthListener = interface; // com.tencent.mm.sdk.diffdev.OAuthListener
JBaseReq = interface; // com.tencent.mm.sdk.modelbase.BaseReq
JBaseResp_ErrCode = interface;
// com.tencent.mm.sdk.modelbase.BaseResp$ErrCode
JBaseResp = interface; // com.tencent.mm.sdk.modelbase.BaseResp
JAddCardToWXCardPackage_Req = interface;
// com.tencent.mm.sdk.modelbiz.AddCardToWXCardPackage$Req
JAddCardToWXCardPackage_Resp = interface;
// com.tencent.mm.sdk.modelbiz.AddCardToWXCardPackage$Resp
JAddCardToWXCardPackage_WXCardItem = interface;
// com.tencent.mm.sdk.modelbiz.AddCardToWXCardPackage$WXCardItem
JAddCardToWXCardPackage = interface;
// com.tencent.mm.sdk.modelbiz.AddCardToWXCardPackage
JCreateChatroom_Req = interface;
// com.tencent.mm.sdk.modelbiz.CreateChatroom$Req
JCreateChatroom_Resp = interface;
// com.tencent.mm.sdk.modelbiz.CreateChatroom$Resp
JCreateChatroom = interface; // com.tencent.mm.sdk.modelbiz.CreateChatroom
JJoinChatroom_Req = interface; // com.tencent.mm.sdk.modelbiz.JoinChatroom$Req
JJoinChatroom_Resp = interface;
// com.tencent.mm.sdk.modelbiz.JoinChatroom$Resp
JJoinChatroom = interface; // com.tencent.mm.sdk.modelbiz.JoinChatroom
JJumpToBizProfile_Req = interface;
// com.tencent.mm.sdk.modelbiz.JumpToBizProfile$Req
JJumpToBizProfile = interface; // com.tencent.mm.sdk.modelbiz.JumpToBizProfile
JJumpToBizTempSession_Req = interface;
// com.tencent.mm.sdk.modelbiz.JumpToBizTempSession$Req
JJumpToBizTempSession = interface;
// com.tencent.mm.sdk.modelbiz.JumpToBizTempSession
JJumpToBizWebview_Req = interface;
// com.tencent.mm.sdk.modelbiz.JumpToBizWebview$Req
JJumpToBizWebview = interface; // com.tencent.mm.sdk.modelbiz.JumpToBizWebview
JOpenBusiLuckyMoney_Req = interface;
// com.tencent.mm.sdk.modelbiz.OpenBusiLuckyMoney$Req
JOpenBusiLuckyMoney = interface;
// com.tencent.mm.sdk.modelbiz.OpenBusiLuckyMoney
JOpenRankList_Req = interface; // com.tencent.mm.sdk.modelbiz.OpenRankList$Req
JOpenRankList = interface; // com.tencent.mm.sdk.modelbiz.OpenRankList
JOpenWebview_Req = interface; // com.tencent.mm.sdk.modelbiz.OpenWebview$Req
JOpenWebview_Resp = interface; // com.tencent.mm.sdk.modelbiz.OpenWebview$Resp
JOpenWebview = interface; // com.tencent.mm.sdk.modelbiz.OpenWebview
JGetMessageFromWX_Req = interface;
// com.tencent.mm.sdk.modelmsg.GetMessageFromWX$Req
JGetMessageFromWX_Resp = interface;
// com.tencent.mm.sdk.modelmsg.GetMessageFromWX$Resp
JGetMessageFromWX = interface; // com.tencent.mm.sdk.modelmsg.GetMessageFromWX
JLaunchFromWX_Req = interface; // com.tencent.mm.sdk.modelmsg.LaunchFromWX$Req
JLaunchFromWX_Resp = interface;
// com.tencent.mm.sdk.modelmsg.LaunchFromWX$Resp
JLaunchFromWX = interface; // com.tencent.mm.sdk.modelmsg.LaunchFromWX
JSendAuth_Req = interface; // com.tencent.mm.sdk.modelmsg.SendAuth$Req
JSendAuth_Resp = interface; // com.tencent.mm.sdk.modelmsg.SendAuth$Resp
JSendAuth = interface; // com.tencent.mm.sdk.modelmsg.SendAuth
JSendMessageToWX_Req = interface;
// com.tencent.mm.sdk.modelmsg.SendMessageToWX$Req
JSendMessageToWX_Resp = interface;
// com.tencent.mm.sdk.modelmsg.SendMessageToWX$Resp
JSendMessageToWX = interface; // com.tencent.mm.sdk.modelmsg.SendMessageToWX
JShowMessageFromWX_Req = interface;
// com.tencent.mm.sdk.modelmsg.ShowMessageFromWX$Req
JShowMessageFromWX_Resp = interface;
// com.tencent.mm.sdk.modelmsg.ShowMessageFromWX$Resp
JShowMessageFromWX = interface;
// com.tencent.mm.sdk.modelmsg.ShowMessageFromWX
JWXAppExtendObject = interface;
// com.tencent.mm.sdk.modelmsg.WXAppExtendObject
JWXAppLaunchData_Builder = interface;
// com.tencent.mm.sdk.modelmsg.WXAppLaunchData$Builder
JWXAppLaunchData = interface; // com.tencent.mm.sdk.modelmsg.WXAppLaunchData
JWXDesignerSharedObject = interface;
// com.tencent.mm.sdk.modelmsg.WXDesignerSharedObject
JWXEmojiObject = interface; // com.tencent.mm.sdk.modelmsg.WXEmojiObject
JWXEmojiSharedObject = interface;
// com.tencent.mm.sdk.modelmsg.WXEmojiSharedObject
JWXFileObject = interface; // com.tencent.mm.sdk.modelmsg.WXFileObject
JWXImageObject = interface; // com.tencent.mm.sdk.modelmsg.WXImageObject
JWXMediaMessage_Builder = interface;
// com.tencent.mm.sdk.modelmsg.WXMediaMessage$Builder
JWXMediaMessage_IMediaObject = interface;
// com.tencent.mm.sdk.modelmsg.WXMediaMessage$IMediaObject
JWXMediaMessage = interface; // com.tencent.mm.sdk.modelmsg.WXMediaMessage
JWXMusicObject = interface; // com.tencent.mm.sdk.modelmsg.WXMusicObject
JWXTextObject = interface; // com.tencent.mm.sdk.modelmsg.WXTextObject
JWXVideoObject = interface; // com.tencent.mm.sdk.modelmsg.WXVideoObject
JWXWebpageObject = interface; // com.tencent.mm.sdk.modelmsg.WXWebpageObject
JPayReq_Options = interface; // com.tencent.mm.sdk.modelpay.PayReq$Options
JPayReq = interface; // com.tencent.mm.sdk.modelpay.PayReq
JPayResp = interface; // com.tencent.mm.sdk.modelpay.PayResp
JIWXAPI = interface; // com.tencent.mm.sdk.openapi.IWXAPI
JIWXAPIEventHandler = interface;
// com.tencent.mm.sdk.openapi.IWXAPIEventHandler
JMMSharedPreferences_REditor = interface;
// com.tencent.mm.sdk.openapi.MMSharedPreferences$REditor
JMMSharedPreferences = interface;
// com.tencent.mm.sdk.openapi.MMSharedPreferences
JWXAPIFactory = interface; // com.tencent.mm.sdk.openapi.WXAPIFactory
JWXApiImplComm = interface; // com.tencent.mm.sdk.openapi.WXApiImplComm
JWXApiImplV10_1 = interface; // com.tencent.mm.sdk.openapi.WXApiImplV10$1
JWXApiImplV10_ActivityLifecycleCb_1 = interface;
// com.tencent.mm.sdk.openapi.WXApiImplV10$ActivityLifecycleCb$1
JWXApiImplV10_ActivityLifecycleCb_2 = interface;
// com.tencent.mm.sdk.openapi.WXApiImplV10$ActivityLifecycleCb$2
JWXApiImplV10_ActivityLifecycleCb = interface;
// com.tencent.mm.sdk.openapi.WXApiImplV10$ActivityLifecycleCb
JWXApiImplV10 = interface; // com.tencent.mm.sdk.openapi.WXApiImplV10
JStatConstants = interface; // com.tencent.wxop.stat.common.StatConstants
JStatLogger = interface; // com.tencent.wxop.stat.common.StatLogger
JEasyActivity = interface; // com.tencent.wxop.stat.EasyActivity
JMtaSDkException = interface; // com.tencent.wxop.stat.MtaSDkException
JNetworkMonitor = interface; // com.tencent.wxop.stat.NetworkMonitor
JStatAccount = interface; // com.tencent.wxop.stat.StatAccount
JStatAppMonitor = interface; // com.tencent.wxop.stat.StatAppMonitor
JStatConfig = interface; // com.tencent.wxop.stat.StatConfig
JStatGameUser = interface; // com.tencent.wxop.stat.StatGameUser
JStatReportStrategy = interface; // com.tencent.wxop.stat.StatReportStrategy
JStatService = interface; // com.tencent.wxop.stat.StatService
JStatServiceImpl = interface; // com.tencent.wxop.stat.StatServiceImpl
JStatSpecifyReportedInfo = interface;
// com.tencent.wxop.stat.StatSpecifyReportedInfo
JBuildClass = interface(JObjectClass)
['{99971DBD-DEC4-4CCC-B572-22C9EBD6F5EB}']
{ static Property Methods }
{ class } function _GetSDK_INT: Integer; // I
{ class } function _GetSDK_VERSION_NAME: JString; // Ljava/lang/String;
{ class } function _GetMIN_SDK_INT: Integer; // I
{ class } function _GetTIMELINE_SUPPORTED_SDK_INT: Integer; // I
{ class } function _GetEMOJI_SUPPORTED_SDK_INT: Integer; // I
{ class } function _GetMUSIC_DATA_URL_SUPPORTED_SDK_INT: Integer; // I
{ class } function _GetPAY_SUPPORTED_SDK_INT: Integer; // I
{ class } function _GetOPENID_SUPPORTED_SDK_INT: Integer; // I
{ class } function _GetFAVORITE_SUPPPORTED_SDK_INT: Integer; // I
{ class } function _GetMESSAGE_ACTION_SUPPPORTED_SDK_INT: Integer; // I
{ class } function _GetSCAN_QRCODE_AUTH_SUPPORTED_SDK_INT: Integer; // I
{ static Methods }
{ class } function getMajorVersion: Integer; cdecl; // ()I
{ class } function getMinorVersion: Integer; cdecl; // ()I
{ static Property }
{ class } property SDK_INT: Integer read _GetSDK_INT;
{ class } property SDK_VERSION_NAME: JString read _GetSDK_VERSION_NAME;
{ class } property MIN_SDK_INT: Integer read _GetMIN_SDK_INT;
{ class } property TIMELINE_SUPPORTED_SDK_INT: Integer
read _GetTIMELINE_SUPPORTED_SDK_INT;
{ class } property EMOJI_SUPPORTED_SDK_INT: Integer
read _GetEMOJI_SUPPORTED_SDK_INT;
{ class } property MUSIC_DATA_URL_SUPPORTED_SDK_INT: Integer
read _GetMUSIC_DATA_URL_SUPPORTED_SDK_INT;
{ class } property PAY_SUPPORTED_SDK_INT: Integer
read _GetPAY_SUPPORTED_SDK_INT;
{ class } property OPENID_SUPPORTED_SDK_INT: Integer
read _GetOPENID_SUPPORTED_SDK_INT;
{ class } property FAVORITE_SUPPPORTED_SDK_INT: Integer
read _GetFAVORITE_SUPPPORTED_SDK_INT;
{ class } property MESSAGE_ACTION_SUPPPORTED_SDK_INT: Integer
read _GetMESSAGE_ACTION_SUPPPORTED_SDK_INT;
{ class } property SCAN_QRCODE_AUTH_SUPPORTED_SDK_INT: Integer
read _GetSCAN_QRCODE_AUTH_SUPPORTED_SDK_INT;
end;
[JavaSignature('com/tencent/mm/sdk/constants/Build')]
JBuild = interface(JObject)
['{D0732554-C31F-41F0-AFA2-461BA1AEF32E}']
{ Property Methods }
{ methods }
{ Property }
end;
TJBuild = class(TJavaGenericImport<JBuildClass, JBuild>)
end;
JConstantsAPI_TokenClass = interface(JObjectClass)
['{FBE5B411-5D44-4909-9521-30B85541FD56}']
{ static Property Methods }
{ class } function _GetWX_TOKEN_KEY: JString; // Ljava/lang/String;
{ class } function _GetWX_TOKEN_VALUE_MSG: JString; // Ljava/lang/String;
{ class } function _GetWX_TOKEN_PLATFORMID_KEY: JString;
// Ljava/lang/String;
{ class } function _GetWX_TOKEN_PLATFORMID_VALUE: JString;
// Ljava/lang/String;
{ class } function _GetWX_LAUNCH_PARAM_KEY: JString; // Ljava/lang/String;
{ static Methods }
{ class } function init: JConstantsAPI_Token; cdecl; // ()V
{ static Property }
{ class } property WX_TOKEN_KEY: JString read _GetWX_TOKEN_KEY;
{ class } property WX_TOKEN_VALUE_MSG: JString read _GetWX_TOKEN_VALUE_MSG;
{ class } property WX_TOKEN_PLATFORMID_KEY: JString
read _GetWX_TOKEN_PLATFORMID_KEY;
{ class } property WX_TOKEN_PLATFORMID_VALUE: JString
read _GetWX_TOKEN_PLATFORMID_VALUE;
{ class } property WX_LAUNCH_PARAM_KEY: JString
read _GetWX_LAUNCH_PARAM_KEY;
end;
[JavaSignature('com/tencent/mm/sdk/constants/ConstantsAPI$Token')]
JConstantsAPI_Token = interface(JObject)
['{60659560-92D0-4252-99D6-F74D03B42BF6}']
{ Property Methods }
{ methods }
{ Property }
end;
TJConstantsAPI_Token = class(TJavaGenericImport<JConstantsAPI_TokenClass,
JConstantsAPI_Token>)
end;
JConstantsAPI_WXAppClass = interface(JObjectClass)
['{E5FDCDB5-93ED-4453-B276-E770B7E9F4B0}']
{ static Property Methods }
{ class } function _GetWXAPP_PACKAGE_NAME: JString; // Ljava/lang/String;
{ class } function _GetWXAPP_BROADCAST_PERMISSION: JString;
// Ljava/lang/String;
{ class } function _GetWXAPP_MSG_ENTRY_CLASSNAME: JString;
// Ljava/lang/String;
{ static Methods }
{ class } function init: JConstantsAPI_WXApp; cdecl; // ()V
{ static Property }
{ class } property WXAPP_PACKAGE_NAME: JString read _GetWXAPP_PACKAGE_NAME;
{ class } property WXAPP_BROADCAST_PERMISSION: JString
read _GetWXAPP_BROADCAST_PERMISSION;
{ class } property WXAPP_MSG_ENTRY_CLASSNAME: JString
read _GetWXAPP_MSG_ENTRY_CLASSNAME;
end;
[JavaSignature('com/tencent/mm/sdk/constants/ConstantsAPI$WXApp')]
JConstantsAPI_WXApp = interface(JObject)
['{E1592FA4-CF5B-43E1-946E-9E8B15465F59}']
{ Property Methods }
{ methods }
{ Property }
end;
TJConstantsAPI_WXApp = class(TJavaGenericImport<JConstantsAPI_WXAppClass,
JConstantsAPI_WXApp>)
end;
JConstantsAPIClass = interface(JObjectClass)
['{7D3ACF7E-9247-490C-B9CE-B6024FD35679}']
{ static Property Methods }
{ class } function _GetACTION_HANDLE_APP_REGISTER: JString;
// Ljava/lang/String;
{ class } function _GetACTION_HANDLE_APP_UNREGISTER: JString;
// Ljava/lang/String;
{ class } function _GetACTION_REFRESH_WXAPP: JString; // Ljava/lang/String;
{ class } function _GetCOMMAND_UNKNOWN: Integer; // I
{ class } function _GetCOMMAND_SENDAUTH: Integer; // I
{ class } function _GetCOMMAND_SENDMESSAGE_TO_WX: Integer; // I
{ class } function _GetCOMMAND_GETMESSAGE_FROM_WX: Integer; // I
{ class } function _GetCOMMAND_SHOWMESSAGE_FROM_WX: Integer; // I
{ class } function _GetCOMMAND_PAY_BY_WX: Integer; // I
{ class } function _GetCOMMAND_LAUNCH_BY_WX: Integer; // I
{ class } function _GetCOMMAND_JUMP_TO_BIZ_PROFILE: Integer; // I
{ class } function _GetCOMMAND_JUMP_BIZ_WEBVIEW: Integer; // I
{ class } function _GetCOMMAND_ADD_CARD_TO_EX_CARD_PACKAGE: Integer; // I
{ class } function _GetCOMMAND_JUMP_BIZ_TEMPSESSION: Integer; // I
{ class } function _GetCOMMAND_OPEN_RANK_LIST: Integer; // I
{ class } function _GetCOMMAND_OPEN_WEBVIEW: Integer; // I
{ class } function _GetCOMMAND_OPEN_BUSI_LUCKY_MONEY: Integer; // I
{ class } function _GetCOMMAND_CREATE_CHATROOM: Integer; // I
{ class } function _GetCOMMAND_JOIN_CHATROOM: Integer; // I
{ class } function _GetAPP_PACKAGE: JString; // Ljava/lang/String;
{ class } function _GetSDK_VERSION: JString; // Ljava/lang/String;
{ class } function _GetCONTENT: JString; // Ljava/lang/String;
{ class } function _GetCHECK_SUM: JString; // Ljava/lang/String;
{ static Methods }
{ static Property }
{ class } property ACTION_HANDLE_APP_REGISTER: JString
read _GetACTION_HANDLE_APP_REGISTER;
{ class } property ACTION_HANDLE_APP_UNREGISTER: JString
read _GetACTION_HANDLE_APP_UNREGISTER;
{ class } property ACTION_REFRESH_WXAPP: JString
read _GetACTION_REFRESH_WXAPP;
{ class } property COMMAND_UNKNOWN: Integer read _GetCOMMAND_UNKNOWN;
{ class } property COMMAND_SENDAUTH: Integer read _GetCOMMAND_SENDAUTH;
{ class } property COMMAND_SENDMESSAGE_TO_WX: Integer
read _GetCOMMAND_SENDMESSAGE_TO_WX;
{ class } property COMMAND_GETMESSAGE_FROM_WX: Integer
read _GetCOMMAND_GETMESSAGE_FROM_WX;
{ class } property COMMAND_SHOWMESSAGE_FROM_WX: Integer
read _GetCOMMAND_SHOWMESSAGE_FROM_WX;
{ class } property COMMAND_PAY_BY_WX: Integer read _GetCOMMAND_PAY_BY_WX;
{ class } property COMMAND_LAUNCH_BY_WX: Integer
read _GetCOMMAND_LAUNCH_BY_WX;
{ class } property COMMAND_JUMP_TO_BIZ_PROFILE: Integer
read _GetCOMMAND_JUMP_TO_BIZ_PROFILE;
{ class } property COMMAND_JUMP_BIZ_WEBVIEW: Integer
read _GetCOMMAND_JUMP_BIZ_WEBVIEW;
{ class } property COMMAND_ADD_CARD_TO_EX_CARD_PACKAGE: Integer
read _GetCOMMAND_ADD_CARD_TO_EX_CARD_PACKAGE;
{ class } property COMMAND_JUMP_BIZ_TEMPSESSION: Integer
read _GetCOMMAND_JUMP_BIZ_TEMPSESSION;
{ class } property COMMAND_OPEN_RANK_LIST: Integer
read _GetCOMMAND_OPEN_RANK_LIST;
{ class } property COMMAND_OPEN_WEBVIEW: Integer
read _GetCOMMAND_OPEN_WEBVIEW;
{ class } property COMMAND_OPEN_BUSI_LUCKY_MONEY: Integer
read _GetCOMMAND_OPEN_BUSI_LUCKY_MONEY;
{ class } property COMMAND_CREATE_CHATROOM: Integer
read _GetCOMMAND_CREATE_CHATROOM;
{ class } property COMMAND_JOIN_CHATROOM: Integer
read _GetCOMMAND_JOIN_CHATROOM;
{ class } property APP_PACKAGE: JString read _GetAPP_PACKAGE;
{ class } property SDK_VERSION: JString read _GetSDK_VERSION;
{ class } property CONTENT: JString read _GetCONTENT;
{ class } property CHECK_SUM: JString read _GetCHECK_SUM;
end;
[JavaSignature('com/tencent/mm/sdk/constants/ConstantsAPI')]
JConstantsAPI = interface(IJavaInstance)
['{EF4859F5-DB39-4CFB-ABB3-96A80F4B0843}']
{ Property Methods }
{ methods }
{ Property }
end;
TJConstantsAPI = class(TJavaGenericImport<JConstantsAPIClass, JConstantsAPI>)
end;
JDiffDevOAuthFactoryClass = interface(JObjectClass)
['{8D86A889-0C79-471F-83FC-4A013643300F}']
{ static Property Methods }
{ class } function _GetVERSION_1: Integer; // I
{ class } function _GetMAX_SUPPORTED_VERSION: Integer; // I
{ static Methods }
{ class } function getDiffDevOAuth: JIDiffDevOAuth; cdecl; overload;
// ()Lcom/tencent/mm/sdk/diffdev/IDiffDevOAuth;
{ class } function getDiffDevOAuth(P1: Integer): JIDiffDevOAuth; cdecl;
overload; // (I)Lcom/tencent/mm/sdk/diffdev/IDiffDevOAuth;
{ static Property }
{ class } property VERSION_1: Integer read _GetVERSION_1;
{ class } property MAX_SUPPORTED_VERSION: Integer
read _GetMAX_SUPPORTED_VERSION;
end;
[JavaSignature('com/tencent/mm/sdk/diffdev/DiffDevOAuthFactory')]
JDiffDevOAuthFactory = interface(JObject)
['{6BC300EA-06BF-4136-87B5-BB67A6F186B9}']
{ Property Methods }
{ methods }
{ Property }
end;
TJDiffDevOAuthFactory = class(TJavaGenericImport<JDiffDevOAuthFactoryClass,
JDiffDevOAuthFactory>)
end;
JIDiffDevOAuthClass = interface(JObjectClass)
['{C65B5CC6-36B7-48C2-A5B7-CAE54522553E}']
{ static Property Methods }
{ static Methods }
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/diffdev/IDiffDevOAuth')]
JIDiffDevOAuth = interface(IJavaInstance)
['{146AE809-FAF4-49F6-9D13-BF18F6F22759}']
{ Property Methods }
{ methods }
function auth(P1: JString; P2: JString; P3: JString; P4: JString;
P5: JString; P6: JOAuthListener): Boolean; cdecl;
// (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/tencent/mm/sdk/diffdev/OAuthListener;)Z
function stopAuth: Boolean; cdecl; // ()Z
procedure addListener(P1: JOAuthListener); cdecl;
// (Lcom/tencent/mm/sdk/diffdev/OAuthListener;)V
procedure removeListener(P1: JOAuthListener); cdecl;
// (Lcom/tencent/mm/sdk/diffdev/OAuthListener;)V
procedure removeAllListeners; cdecl; // ()V
procedure detach; cdecl; // ()V
{ Property }
end;
TJIDiffDevOAuth = class(TJavaGenericImport<JIDiffDevOAuthClass,
JIDiffDevOAuth>)
end;
JOAuthErrCodeClass = interface(JEnumClass)
// or JObjectClass // SuperSignature: java/lang/Enum
['{F802324D-9B29-494F-9256-15BA8BEE621F}']
{ static Property Methods }
{ class } function _GetWechatAuth_Err_OK: JOAuthErrCode;
// Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;
{ class } function _GetWechatAuth_Err_NormalErr: JOAuthErrCode;
// Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;
{ class } function _GetWechatAuth_Err_NetworkErr: JOAuthErrCode;
// Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;
{ class } function _GetWechatAuth_Err_JsonDecodeErr: JOAuthErrCode;
// Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;
{ class } function _GetWechatAuth_Err_Cancel: JOAuthErrCode;
// Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;
{ class } function _GetWechatAuth_Err_Timeout: JOAuthErrCode;
// Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;
{ class } function _GetWechatAuth_Err_Auth_Stopped: JOAuthErrCode;
// Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;
{ static Methods }
{ class } function values: TJavaObjectArray<JOAuthErrCode>; cdecl;
// ()[Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;
{ class } function valueOf(P1: JString): JOAuthErrCode; cdecl;
// (Ljava/lang/String;)Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;
{ static Property }
{ class } property WechatAuth_Err_OK: JOAuthErrCode
read _GetWechatAuth_Err_OK;
{ class } property WechatAuth_Err_NormalErr: JOAuthErrCode
read _GetWechatAuth_Err_NormalErr;
{ class } property WechatAuth_Err_NetworkErr: JOAuthErrCode
read _GetWechatAuth_Err_NetworkErr;
{ class } property WechatAuth_Err_JsonDecodeErr: JOAuthErrCode
read _GetWechatAuth_Err_JsonDecodeErr;
{ class } property WechatAuth_Err_Cancel: JOAuthErrCode
read _GetWechatAuth_Err_Cancel;
{ class } property WechatAuth_Err_Timeout: JOAuthErrCode
read _GetWechatAuth_Err_Timeout;
{ class } property WechatAuth_Err_Auth_Stopped: JOAuthErrCode
read _GetWechatAuth_Err_Auth_Stopped;
end;
[JavaSignature('com/tencent/mm/sdk/diffdev/OAuthErrCode')]
JOAuthErrCode = interface(JEnum)
// or JObject // SuperSignature: java/lang/Enum
['{8CA67DB8-018B-428B-BBA2-C56BB33B5A48}']
{ Property Methods }
{ methods }
function getCode: Integer; cdecl; // ()I
function toString: JString; cdecl; // ()Ljava/lang/String;
{ Property }
end;
TJOAuthErrCode = class(TJavaGenericImport<JOAuthErrCodeClass, JOAuthErrCode>)
end;
JOAuthListenerClass = interface(JObjectClass)
['{23E91C92-2275-44DC-8E45-7446FD77C17F}']
{ static Property Methods }
{ static Methods }
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/diffdev/OAuthListener')]
JOAuthListener = interface(IJavaInstance)
['{894EB376-2821-434F-A911-1FF5BCABF186}']
{ Property Methods }
{ methods }
procedure onAuthGotQrcode(P1: JString; P2: TJavaArray<Byte>); cdecl;
// (Ljava/lang/String;[B)V
procedure onQrcodeScanned; cdecl; // ()V
procedure onAuthFinish(P1: JOAuthErrCode; P2: JString); cdecl;
// (Lcom/tencent/mm/sdk/diffdev/OAuthErrCode;Ljava/lang/String;)V
{ Property }
end;
TJOAuthListener = class(TJavaGenericImport<JOAuthListenerClass,
JOAuthListener>)
end;
JBaseReqClass = interface(JObjectClass)
['{6E22817A-8CB1-4FFD-8B31-56E4AD28A1F8}']
{ static Property Methods }
{ static Methods }
{ class } function init: JBaseReq; cdecl; // ()V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbase/BaseReq')]
JBaseReq = interface(JObject)
['{9A516615-839D-4885-A688-3B2CBF2E8E9C}']
{ Property Methods }
function _Gettransaction: JString; // Ljava/lang/String;
procedure _Settransaction(atransaction: JString); // (Ljava/lang/String;)V
function _GetopenId: JString; // Ljava/lang/String;
procedure _SetopenId(aopenId: JString); // (Ljava/lang/String;)V
{ methods }
function getType: Integer; cdecl; // ()I
procedure toBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
procedure fromBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
function checkArgs: Boolean; cdecl; // ()Z
{ Property }
property transaction: JString read _Gettransaction write _Settransaction;
property openId: JString read _GetopenId write _SetopenId;
end;
TJBaseReq = class(TJavaGenericImport<JBaseReqClass, JBaseReq>)
end;
JBaseResp_ErrCodeClass = interface(JObjectClass)
['{CCFD2D98-AF82-48C5-BB4E-86AAF7E53A84}']
{ static Property Methods }
{ class } function _GetERR_OK: Integer; // I
{ class } function _GetERR_COMM: Integer; // I
{ class } function _GetERR_USER_CANCEL: Integer; // I
{ class } function _GetERR_SENT_FAILED: Integer; // I
{ class } function _GetERR_AUTH_DENIED: Integer; // I
{ class } function _GetERR_UNSUPPORT: Integer; // I
{ class } function _GetERR_BAN: Integer; // I
{ static Methods }
{ static Property }
{ class } property ERR_OK: Integer read _GetERR_OK;
{ class } property ERR_COMM: Integer read _GetERR_COMM;
{ class } property ERR_USER_CANCEL: Integer read _GetERR_USER_CANCEL;
{ class } property ERR_SENT_FAILED: Integer read _GetERR_SENT_FAILED;
{ class } property ERR_AUTH_DENIED: Integer read _GetERR_AUTH_DENIED;
{ class } property ERR_UNSUPPORT: Integer read _GetERR_UNSUPPORT;
{ class } property ERR_BAN: Integer read _GetERR_BAN;
end;
[JavaSignature('com/tencent/mm/sdk/modelbase/BaseResp$ErrCode')]
JBaseResp_ErrCode = interface(IJavaInstance)
['{3F2E1C84-49A1-4EF6-B7AE-A62E70299BF4}']
{ Property Methods }
{ methods }
{ Property }
end;
TJBaseResp_ErrCode = class(TJavaGenericImport<JBaseResp_ErrCodeClass,
JBaseResp_ErrCode>)
end;
JBaseRespClass = interface(JObjectClass)
['{ED8E13F1-0EA5-45D3-BAC4-FBCBEAE3AA2B}']
{ static Property Methods }
{ static Methods }
{ class } function init: JBaseResp; cdecl; // ()V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbase/BaseResp')]
JBaseResp = interface(JObject)
['{E8A7E99F-7248-4CE2-863E-16FD232FB390}']
{ Property Methods }
function _GeterrCode: Integer; // I
procedure _SeterrCode(aerrCode: Integer); // (I)V
function _GeterrStr: JString; // Ljava/lang/String;
procedure _SeterrStr(aerrStr: JString); // (Ljava/lang/String;)V
function _Gettransaction: JString; // Ljava/lang/String;
procedure _Settransaction(atransaction: JString); // (Ljava/lang/String;)V
function _GetopenId: JString; // Ljava/lang/String;
procedure _SetopenId(aopenId: JString); // (Ljava/lang/String;)V
{ methods }
function getType: Integer; cdecl; // ()I
procedure toBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
procedure fromBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
function checkArgs: Boolean; cdecl; // ()Z
{ Property }
property errCode: Integer read _GeterrCode write _SeterrCode;
property errStr: JString read _GeterrStr write _SeterrStr;
property transaction: JString read _Gettransaction write _Settransaction;
property openId: JString read _GetopenId write _SetopenId;
end;
TJBaseResp = class(TJavaGenericImport<JBaseRespClass, JBaseResp>)
end;
JAddCardToWXCardPackage_ReqClass = interface(JBaseReqClass)
// or JObjectClass // SuperSignature: com/tencent/mm/sdk/modelbase/BaseReq
['{755FBB8C-5F8A-4610-81AA-174E12BEAF22}']
{ static Property Methods }
{ static Methods }
{ class } function init: JAddCardToWXCardPackage_Req; cdecl; // ()V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/AddCardToWXCardPackage$Req')]
JAddCardToWXCardPackage_Req = interface(JBaseReq)
// or JObject // SuperSignature: com/tencent/mm/sdk/modelbase/BaseReq
['{26A61259-BFA7-4D56-8D17-082AD80E1639}']
{ Property Methods }
function _GetcardArrary: JList; // Ljava/util/List;
procedure _SetcardArrary(acardArrary: JList); // (Ljava/util/List;)V
{ methods }
function getType: Integer; cdecl; // ()I
function checkArgs: Boolean; cdecl; // ()Z
procedure toBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
{ Property }
property cardArrary: JList read _GetcardArrary write _SetcardArrary;
end;
TJAddCardToWXCardPackage_Req = class
(TJavaGenericImport<JAddCardToWXCardPackage_ReqClass,
JAddCardToWXCardPackage_Req>)
end;
JAddCardToWXCardPackage_RespClass = interface(JBaseRespClass)
// or JObjectClass // SuperSignature: com/tencent/mm/sdk/modelbase/BaseResp
['{898D9422-C288-4726-8F08-62D741646167}']
{ static Property Methods }
{ static Methods }
{ class } function init: JAddCardToWXCardPackage_Resp; cdecl; overload;
// ()V
{ class } function init(P1: JBundle): JAddCardToWXCardPackage_Resp; cdecl;
overload; // (Landroid/os/Bundle;)V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/AddCardToWXCardPackage$Resp')]
JAddCardToWXCardPackage_Resp = interface(JBaseResp)
// or JObject // SuperSignature: com/tencent/mm/sdk/modelbase/BaseResp
['{2A8B9006-CE7D-417E-9CD1-D393FF00A8D7}']
{ Property Methods }
function _GetcardArrary: JList; // Ljava/util/List;
procedure _SetcardArrary(acardArrary: JList); // (Ljava/util/List;)V
{ methods }
function getType: Integer; cdecl; // ()I
function checkArgs: Boolean; cdecl; // ()Z
procedure toBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
procedure fromBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
{ Property }
property cardArrary: JList read _GetcardArrary write _SetcardArrary;
end;
TJAddCardToWXCardPackage_Resp = class
(TJavaGenericImport<JAddCardToWXCardPackage_RespClass,
JAddCardToWXCardPackage_Resp>)
end;
JAddCardToWXCardPackage_WXCardItemClass = interface(JObjectClass)
['{1FF276F6-E7C1-4B53-801E-6D119D8C4389}']
{ static Property Methods }
{ static Methods }
{ class } function init: JAddCardToWXCardPackage_WXCardItem; cdecl; // ()V
{ static Property }
end;
[JavaSignature
('com/tencent/mm/sdk/modelbiz/AddCardToWXCardPackage$WXCardItem')]
JAddCardToWXCardPackage_WXCardItem = interface(JObject)
['{5DC2D06A-C696-4DF5-AF55-E33349CAF922}']
{ Property Methods }
function _GetcardId: JString; // Ljava/lang/String;
procedure _SetcardId(acardId: JString); // (Ljava/lang/String;)V
function _GetcardExtMsg: JString; // Ljava/lang/String;
procedure _SetcardExtMsg(acardExtMsg: JString); // (Ljava/lang/String;)V
function _GetcardState: Integer; // I
procedure _SetcardState(acardState: Integer); // (I)V
{ methods }
{ Property }
property cardId: JString read _GetcardId write _SetcardId;
property cardExtMsg: JString read _GetcardExtMsg write _SetcardExtMsg;
property cardState: Integer read _GetcardState write _SetcardState;
end;
TJAddCardToWXCardPackage_WXCardItem = class
(TJavaGenericImport<JAddCardToWXCardPackage_WXCardItemClass,
JAddCardToWXCardPackage_WXCardItem>)
end;
JAddCardToWXCardPackageClass = interface(JObjectClass)
['{F798040D-4364-436D-940C-E297658CEB63}']
{ static Property Methods }
{ static Methods }
{ class } function init: JAddCardToWXCardPackage; cdecl; // ()V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/AddCardToWXCardPackage')]
JAddCardToWXCardPackage = interface(JObject)
['{FD7FE351-F2CB-4099-B962-F663B6FC37F6}']
{ Property Methods }
{ methods }
{ Property }
end;
TJAddCardToWXCardPackage = class
(TJavaGenericImport<JAddCardToWXCardPackageClass, JAddCardToWXCardPackage>)
end;
JCreateChatroom_ReqClass = interface(JBaseReqClass)
// or JObjectClass // SuperSignature: com/tencent/mm/sdk/modelbase/BaseReq
['{C779546D-87A9-4839-9C8F-F29B4EEB90C6}']
{ static Property Methods }
{ static Methods }
{ class } function init: JCreateChatroom_Req; cdecl; // ()V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/CreateChatroom$Req')]
JCreateChatroom_Req = interface(JBaseReq)
// or JObject // SuperSignature: com/tencent/mm/sdk/modelbase/BaseReq
['{0A14DF07-7510-43AE-B3A0-E60A5BF62937}']
{ Property Methods }
function _GetgroupId: JString; // Ljava/lang/String;
procedure _SetgroupId(agroupId: JString); // (Ljava/lang/String;)V
function _GetchatroomName: JString; // Ljava/lang/String;
procedure _SetchatroomName(achatroomName: JString); // (Ljava/lang/String;)V
function _GetchatroomNickName: JString; // Ljava/lang/String;
procedure _SetchatroomNickName(achatroomNickName: JString);
// (Ljava/lang/String;)V
function _GetextMsg: JString; // Ljava/lang/String;
procedure _SetextMsg(aextMsg: JString); // (Ljava/lang/String;)V
{ methods }
function getType: Integer; cdecl; // ()I
function checkArgs: Boolean; cdecl; // ()Z
procedure toBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
{ Property }
property groupId: JString read _GetgroupId write _SetgroupId;
property chatroomName: JString read _GetchatroomName write _SetchatroomName;
property chatroomNickName: JString read _GetchatroomNickName
write _SetchatroomNickName;
property extMsg: JString read _GetextMsg write _SetextMsg;
end;
TJCreateChatroom_Req = class(TJavaGenericImport<JCreateChatroom_ReqClass,
JCreateChatroom_Req>)
end;
JCreateChatroom_RespClass = interface(JBaseRespClass)
// or JObjectClass // SuperSignature: com/tencent/mm/sdk/modelbase/BaseResp
['{CDC82E59-99BA-4D08-AEF8-2CA8F62AC01B}']
{ static Property Methods }
{ static Methods }
{ class } function init: JCreateChatroom_Resp; cdecl; overload; // ()V
{ class } function init(P1: JBundle): JCreateChatroom_Resp; cdecl; overload;
// (Landroid/os/Bundle;)V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/CreateChatroom$Resp')]
JCreateChatroom_Resp = interface(JBaseResp)
// or JObject // SuperSignature: com/tencent/mm/sdk/modelbase/BaseResp
['{8EFE90F8-7581-40C9-BC7C-348CABCA96BC}']
{ Property Methods }
function _GetextMsg: JString; // Ljava/lang/String;
procedure _SetextMsg(aextMsg: JString); // (Ljava/lang/String;)V
{ methods }
function getType: Integer; cdecl; // ()I
procedure fromBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
procedure toBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
function checkArgs: Boolean; cdecl; // ()Z
{ Property }
property extMsg: JString read _GetextMsg write _SetextMsg;
end;
TJCreateChatroom_Resp = class(TJavaGenericImport<JCreateChatroom_RespClass,
JCreateChatroom_Resp>)
end;
JCreateChatroomClass = interface(JObjectClass)
['{A3BCC4CA-45E4-419D-937B-521BCE38D2B6}']
{ static Property Methods }
{ static Methods }
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/CreateChatroom')]
JCreateChatroom = interface(JObject)
['{24A95ACB-0840-4CDC-A918-70B16EFDAD44}']
{ Property Methods }
{ methods }
{ Property }
end;
TJCreateChatroom = class(TJavaGenericImport<JCreateChatroomClass,
JCreateChatroom>)
end;
JJoinChatroom_ReqClass = interface(JBaseReqClass)
// or JObjectClass // SuperSignature: com/tencent/mm/sdk/modelbase/BaseReq
['{7B37D5A9-09AC-4781-B307-6C687FBAF1AD}']
{ static Property Methods }
{ static Methods }
{ class } function init: JJoinChatroom_Req; cdecl; // ()V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/JoinChatroom$Req')]
JJoinChatroom_Req = interface(JBaseReq)
// or JObject // SuperSignature: com/tencent/mm/sdk/modelbase/BaseReq
['{4DE5190E-2478-46EC-84D0-AD9DA0DCCE44}']
{ Property Methods }
function _GetgroupId: JString; // Ljava/lang/String;
procedure _SetgroupId(agroupId: JString); // (Ljava/lang/String;)V
function _GetchatroomNickName: JString; // Ljava/lang/String;
procedure _SetchatroomNickName(achatroomNickName: JString);
// (Ljava/lang/String;)V
function _GetextMsg: JString; // Ljava/lang/String;
procedure _SetextMsg(aextMsg: JString); // (Ljava/lang/String;)V
{ methods }
function getType: Integer; cdecl; // ()I
function checkArgs: Boolean; cdecl; // ()Z
procedure toBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
{ Property }
property groupId: JString read _GetgroupId write _SetgroupId;
property chatroomNickName: JString read _GetchatroomNickName
write _SetchatroomNickName;
property extMsg: JString read _GetextMsg write _SetextMsg;
end;
TJJoinChatroom_Req = class(TJavaGenericImport<JJoinChatroom_ReqClass,
JJoinChatroom_Req>)
end;
JJoinChatroom_RespClass = interface(JBaseRespClass)
// or JObjectClass // SuperSignature: com/tencent/mm/sdk/modelbase/BaseResp
['{CDFA07E7-B0F5-4081-967B-AA843391F6AC}']
{ static Property Methods }
{ static Methods }
{ class } function init: JJoinChatroom_Resp; cdecl; overload; // ()V
{ class } function init(P1: JBundle): JJoinChatroom_Resp; cdecl; overload;
// (Landroid/os/Bundle;)V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/JoinChatroom$Resp')]
JJoinChatroom_Resp = interface(JBaseResp)
// or JObject // SuperSignature: com/tencent/mm/sdk/modelbase/BaseResp
['{509226B7-A02B-4718-9664-0E1A6D1D7310}']
{ Property Methods }
function _GetextMsg: JString; // Ljava/lang/String;
procedure _SetextMsg(aextMsg: JString); // (Ljava/lang/String;)V
{ methods }
function getType: Integer; cdecl; // ()I
procedure fromBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
procedure toBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
function checkArgs: Boolean; cdecl; // ()Z
{ Property }
property extMsg: JString read _GetextMsg write _SetextMsg;
end;
TJJoinChatroom_Resp = class(TJavaGenericImport<JJoinChatroom_RespClass,
JJoinChatroom_Resp>)
end;
JJoinChatroomClass = interface(JObjectClass)
['{444AEC29-59C0-437A-9D05-CE2CF9223CB6}']
{ static Property Methods }
{ static Methods }
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/JoinChatroom')]
JJoinChatroom = interface(JObject)
['{16F724C7-89A7-4C9E-8BF3-CB55B3C7CDE6}']
{ Property Methods }
{ methods }
{ Property }
end;
TJJoinChatroom = class(TJavaGenericImport<JJoinChatroomClass, JJoinChatroom>)
end;
JJumpToBizProfile_ReqClass = interface(JBaseReqClass)
// or JObjectClass // SuperSignature: com/tencent/mm/sdk/modelbase/BaseReq
['{7FF44569-9275-4CED-AC22-E14393D900EE}']
{ static Property Methods }
{ static Methods }
{ class } function init: JJumpToBizProfile_Req; cdecl; // ()V
{ static Property }
end;
[JavaSignature('com/tencent/mm/sdk/modelbiz/JumpToBizProfile$Req')]
JJumpToBizProfile_Req = interface(JBaseReq)
// or JObject // SuperSignature: com/tencent/mm/sdk/modelbase/BaseReq
['{3FF362C3-4419-4614-B9CA-2B83C2F335C6}']
{ Property Methods }
function _GettoUserName: JString; // Ljava/lang/String;
procedure _SettoUserName(atoUserName: JString); // (Ljava/lang/String;)V
function _GetextMsg: JString; // Ljava/lang/String;
procedure _SetextMsg(aextMsg: JString); // (Ljava/lang/String;)V
function _GetprofileType: Integer; // I
procedure _SetprofileType(aprofileType: Integer); // (I)V
{ methods }
function getType: Integer; cdecl; // ()I
function checkArgs: Boolean; cdecl; // ()Z
procedure toBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
procedure fromBundle(P1: JBundle); cdecl; // (Landroid/os/Bundle;)V
{ Property }
property toUserName: JString read _GettoUserName write _SettoUserName;
property extMsg: JString read _GetextMsg write _SetextMsg;
property profileType: Integer read _GetprofileType write _SetprofileType;
end;
TJJumpToBizProfile_Req = class(TJavaGenericImport<JJumpToBizProfile_ReqClass,
JJumpToBizProfile_Req>)
end;
JJumpToBizProfileClass = interface(JObjectClass)
['{7436EC84-062D-4D42-AC73-7055E4BACF00}']
{ static Property Methods }
{ class } function _GetJUMP_TO_NORMAL_BIZ_PROFILE: Integer; // I
{ class } function _GetJUMP_TO_HARD_WARE_BIZ_PROFILE: Integer; // I
{ static Methods }
{ class } function init: JJumpToBizProfile; cdecl; // ()V
{ static Property }
{ class } property JUMP_TO_NORMAL_BIZ_PROFILE: Integer
read _GetJUMP_TO_NORMAL_BIZ_PROFILE;
{ class } property JUMP_TO_HARD_WARE_BIZ_PROFILE: Integer
read _GetJUMP_TO_HARD_WARE_BIZ_PROFILE;
end;