I have developed plugins for Wireshark 2.2.3 32-bit version. But when I use the same .dll files in the 64-bit version of Wireshark-2.2.3 it doesn't work. Please help me with this. asked 17 Jan '17, 05:17 chirag showing 5 of 6 show 1 more comments |
I have developed plugins for Wireshark 2.2.3 32-bit version. But when I use the same .dll files in the 64-bit version of Wireshark-2.2.3 it doesn't work. Please help me with this. asked 17 Jan '17, 05:17 chirag showing 5 of 6 show 1 more comments |
Recompile the code?
Are there any additional changes to the code required?, other than recompiling?
If you programmed it clean there should not be. The compilation will tell you.
Don't assume that a pointer will fit into an
int
or anunsigned int
(or any types that are equivalent, such asgint
orguint
).Don't assume it will fit into a
long
or anunsigned long
(or any types that are equivalent, such asglong
orgulong
), either. It won't, on Windows.... and all other advice as found in README.developer
Thanks Guy and Jaap for the comments. I will compile and make changes accordingly.