| 11 | static_assert(sizeof(Guid) <= sizeof(APP_LOCAL_DEVICE_ID), "Invalid Game Input deviceId size."); |
| 12 | |
| 13 | String ToString(GameInputString const* name) |
| 14 | { |
| 15 | return name && name->data ? String(name->data) : String::Empty; |
| 16 | } |
| 17 | |
| 18 | /// <summary> |
| 19 | /// Implementation of the gamepad device for GDK platform. |
no test coverage detected