> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GameInputRawDeviceReportItemInfo

> GameInputRawDeviceReportItemInfo

# GameInputRawDeviceReportItemInfo

<Warning>**사용되지 않음.** 이 구조체는 GameInput v1에서 제거되었으며 현재 API에서 사용할 수 없습니다. 현재 [GameInputRawDeviceReportInfo](/reference/input/gameinput/structs/gameinputrawdevicereportinfo)는 다른 항목 설명자를 사용합니다.</Warning>

원시 HID 장치 보고서 내의 개별 데이터 항목을 설명합니다.

## 구문

```cpp theme={null}
typedef struct GameInputRawDeviceReportItemInfo {
    uint32_t bitOffset;
    uint32_t bitSize;
    int64_t logicalMin;
    int64_t logicalMax;
    int64_t physicalMin;
    int64_t physicalMax;
    GameInputRawDevicePhysicalUnitKind physicalUnits;
    uint32_t rawPhysicalUnits;
    int32_t rawPhysicalUnitsExponent;
    GameInputRawDeviceReportItemFlags flags;
    uint32_t usageCount;
    const GameInputUsage* usages;
    const GameInputRawDeviceItemCollectionInfo* collection;
    const GameInputLabel* itemLabel;
    const GameInputLabel* collectionLabel;
} GameInputRawDeviceReportItemInfo;
```

## 멤버

**bitOffset**\
형식: uint32\_t

보고서 내 이 항목의 비트 오프셋입니다.

**bitSize**\
형식: uint32\_t

이 항목의 크기(비트 단위)입니다.

**logicalMin, logicalMax**\
형식: int64\_t

이 항목의 논리(원시) 값 범위입니다.

**physicalMin, physicalMax**\
형식: int64\_t

이 항목의 물리적 값 범위입니다(단위 지수 적용 후).

**physicalUnits**\
형식: [GameInputRawDevicePhysicalUnitKind](/reference/input/gameinput/deprecated/enums/gameinputrawdevicephysicalunitkind)

이 항목의 물리적 단위 시스템입니다.

**rawPhysicalUnits**\
형식: uint32\_t

원시 HID 물리적 단위 값입니다.

**rawPhysicalUnitsExponent**\
형식: int32\_t

원시 물리적 값에 적용할 10진 지수입니다.

**flags**\
형식: [GameInputRawDeviceReportItemFlags](/reference/input/gameinput/deprecated/enums/gameinputrawdevicereportitemflags)

항목 속성을 설명하는 플래그입니다.

**usageCount**\
형식: uint32\_t

이 항목에 대한 HID 사용법(usage)의 수입니다.

**usages**\
형식: const GameInputUsage\*

`usageCount`개의 사용법 배열에 대한 포인터입니다.

**collection**\
형식: const [GameInputRawDeviceItemCollectionInfo](/reference/input/gameinput/deprecated/structs/gameinputrawdeviceitemcollectioninfo)\*

이 항목이 속한 컬렉션입니다.

**itemLabel**\
형식: const GameInputLabel\*

항목에 대한 선택적 레이블입니다.

**collectionLabel**\
형식: const GameInputLabel\*

부모 컬렉션에 대한 선택적 레이블입니다.

## 버전 기록

| 버전     | 변경 사항    |
| ------ | -------- |
| **v1** | 제거되었습니다. |
| **v0** | 도입되었습니다. |

## 함께 보기

[사용되지 않는 GameInput API 멤버](/reference/input/gameinput/deprecated/gameinput_deprecated_members)
[GameInputRawDeviceItemCollectionInfo](/reference/input/gameinput/deprecated/structs/gameinputrawdeviceitemcollectioninfo)
[GameInputRawDevicePhysicalUnitKind](/reference/input/gameinput/deprecated/enums/gameinputrawdevicephysicalunitkind)
[GameInputRawDeviceReportItemFlags](/reference/input/gameinput/deprecated/enums/gameinputrawdevicereportitemflags)


## Related topics

- [GameInputRawDeviceReportItemFlags](/ko/reference/input/gameinput/deprecated/enums/gameinputrawdevicereportitemflags.md)
- [GameInputRawDeviceItemCollectionInfo](/ko/reference/input/gameinput/deprecated/structs/gameinputrawdeviceitemcollectioninfo.md)
- [GameInputRawDevicePhysicalUnitKind](/ko/reference/input/gameinput/deprecated/enums/gameinputrawdevicephysicalunitkind.md)
- [GameInput](/ko/reference/input/gameinput/gameinput_members.md)
- [사용되지 않는 GameInput API 멤버](/ko/reference/input/gameinput/deprecated/gameinput_deprecated_members.md)
