| 2 | #include "dotnet_interop.h" |
| 3 | |
| 4 | long GetSafeArrayLen(LPSAFEARRAY psa) { |
| 5 | long ubound = 0; |
| 6 | SafeArrayGetUBound(psa, 1, &ubound); |
| 7 | return ubound + 1; |
| 8 | } |
| 9 | |
| 10 | mscorlib::_MethodInfoPtr DotNetInterop::GetStaticMethod(mscorlib::_TypePtr type, LPCWSTR methodName, int pcount) { |
| 11 |
no outgoing calls
no test coverage detected