| 382 | namespace android::anative_window_creator::detail::types::apis |
| 383 | { |
| 384 | struct ApiDescriptor |
| 385 | { |
| 386 | size_t minVersion; |
| 387 | size_t maxVersion; |
| 388 | void **storeToTarget; |
| 389 | const char *apiSignature; |
| 390 | |
| 391 | bool IsSupported(size_t currentVersion) const |
| 392 | { |
| 393 | return currentVersion >= minVersion && currentVersion <= maxVersion; |
| 394 | } |
| 395 | }; |
| 396 | } // namespace android::anative_window_creator::detail::types::apis |
| 397 | |
| 398 | namespace android::anative_window_creator::detail::apis |
nothing calls this directly
no outgoing calls
no test coverage detected