Open leleftheriades opened 7 years ago
I am trying to mock an external api which uses the __stdcall calling convention as shown below:
class MockMe { public: virtual int __stdcall foo() = 0; }; Mock<MockMe> mock; When(Method(mock, foo)).Return(1);
but the compiler can't detect a matching stub method
I am trying to mock an external api which uses the __stdcall calling convention as shown below:
but the compiler can't detect a matching stub method