Log in

View Full Version : IDA 2 SICE plug-in failed


Solomon
December 6th, 2002, 03:45
when I try to save the NMS file, IDA2SICE plug-in failed. The message is "I2S: plugin doesn't support undefined(unNamed) bytes in structure _MIDL_STUB_MESSAGE". plugin ver is v0.03g, IDA is v4.15

regards

tom_324
December 7th, 2002, 10:03
Contact Mostek on e-mail from 'readme.txt'. Provide enough details for bug to be reproduced and he will be happy to help.

Tom

banshee
January 2nd, 2003, 14:55
I solved this problem in the very simple way. I opened "Structures..." subview and looked for structure where the plugin failed, it lloked like this

0000 tagACCEL struc ; (sizeof=0x6, standard type) ;
0000 fVirt db ?
0000 db ? ;here plugin failed
0002 key dw ?
0004 cmd dw ?
0006 tagACCEL ends

Then I changed type of fVirt to dw and everything worked fine. Think I could also just name that byte to get the same results.

0000 tagACCEL struc ; (sizeof=0x6, standard type) ;
0000 fVirt dw ?
0002 key dw ?
0004 cmd dw ?
0006 tagACCEL ends

Hope it helps.

Solomon
January 3rd, 2003, 11:41
thx, I will try it.