MCPcopy Create free account
hub / github.com/Bzi-Han/AndroidSurfaceImgui / ApiDescriptor

Class ApiDescriptor

modules/ANativeWindowCreator.h:384–395  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

382namespace 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
398namespace android::anative_window_creator::detail::apis

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected