You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
When I used the tool to detect C++exported classes, I found that it was not possible to detect changes in the memory structure of the exported classes. Does the tool support C++exported class compatibility detection?
1.0.0 code
struct TestExportClassStructure
{
long long i[5];
long j;
double k;
struct OpaqueType* p;
};
class _declspec(dllexport) TestExportClass
{
TestExportClass();
public:
TestExportClassStructure s_test_export_class_struct;
};
1.1.0 code
struct TestExportClassStructure
{
long long i[5];
long j;
double k;
struct OpaqueType* p;
int increase_int;
};
class declspec(dllexport) TestExportClass
{
TestExportClass();
public:
TestExportClassStructure s_test_export_class_struct;
int i_test_export_class = 0;
};
Desired results:Can you tell me if the two versions are incompatible? Do you support this type of detection。
thank you
The text was updated successfully, but these errors were encountered:
Hello,
When I used the tool to detect C++exported classes, I found that it was not possible to detect changes in the memory structure of the exported classes. Does the tool support C++exported class compatibility detection?
1.0.0 code
struct TestExportClassStructure
{
long long i[5];
long j;
double k;
struct OpaqueType* p;
};
class _declspec(dllexport) TestExportClass
{
TestExportClass();
public:
TestExportClassStructure s_test_export_class_struct;
};
1.1.0 code
struct TestExportClassStructure
{
long long i[5];
long j;
double k;
struct OpaqueType* p;
int increase_int;
};
class declspec(dllexport) TestExportClass
{
TestExportClass();
public:
TestExportClassStructure s_test_export_class_struct;
int i_test_export_class = 0;
};
Desired results:Can you tell me if the two versions are incompatible? Do you support this type of detection。
thank you
The text was updated successfully, but these errors were encountered: