> ## 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.

# IGameInputDevice::ExecuteRawDeviceIoControl

> IGameInputDevice::ExecuteRawDeviceIoControl

# IGameInputDevice::ExecuteRawDeviceIoControl

<Warning>**사용되지 않음.** 이 메서드는 GameInput v1에서 제거되었으며 현재 API에서는 사용할 수 없습니다.</Warning>

원시 HID 디바이스에 I/O 제어 코드를 직접 보냅니다.

## 구문

```cpp theme={null}
HRESULT ExecuteRawDeviceIoControl(
    uint32_t controlCode,
    size_t inputBufferSize,
    const void* inputBuffer,
    size_t outputBufferSize,
    void* outputBuffer,
    size_t* outputSizeWritten
);
```

### 매개변수

*controlCode*   \_In\_\
형식: uint32\_t

보낼 I/O 제어 코드입니다.

*inputBufferSize*   \_In\_\
형식: size\_t

`inputBuffer`의 크기(바이트 단위)입니다.

*inputBuffer*   \_In\_reads\_bytes\_opt\_(inputBufferSize)\_\
형식: const void\*

입력 데이터 버퍼에 대한 포인터입니다.

*outputBufferSize*   \_In\_\
형식: size\_t

`outputBuffer`의 크기(바이트 단위)입니다.

*outputBuffer*   \_Out\_writes\_bytes\_opt\_(outputBufferSize)\_\
형식: void\*

출력 데이터 버퍼에 대한 포인터입니다.

*outputSizeWritten*   \_Out\_opt\_\
형식: size\_t\*

`outputBuffer`에 기록된 바이트 수입니다.

### 반환값

형식: HRESULT

이 메서드는 v0에서 구현된 적이 없으므로 E\_NOTIMPL을 반환합니다.

## 설명

이 메서드는 `AcquireExclusiveRawDeviceAccess`를 통해 독점적 원시 디바이스 액세스가 획득되었을 때 사용할 수 있었습니다. 원시 디바이스 액세스 모델의 단순화의 일환으로 v1에서 제거되었습니다.

## 버전 기록

| 버전     | 변경 사항 |
| ------ | ----- |
| **v1** | 제거됨.  |
| **v0** | 도입됨.  |

## 함께 보기

[사용되지 않는 GameInput API 멤버](/reference/input/gameinput/deprecated/gameinput_deprecated_members)\
[IGameInputDevice::AcquireExclusiveRawDeviceAccess](/reference/input/gameinput/deprecated/interfaces/igameinputdevice/methods/igameinputdevice_acquireexclusiverawdeviceaccess)\
[IGameInputDevice](/reference/input/gameinput/interfaces/igameinputdevice/igameinputdevice)


## Related topics

- [IGameInputDevice::SetRawDeviceFeature](/ko/reference/input/gameinput/deprecated/interfaces/igameinputdevice/methods/igameinputdevice_setrawdevicefeature.md)
- [IGameInputDevice::GetRawDeviceFeature](/ko/reference/input/gameinput/deprecated/interfaces/igameinputdevice/methods/igameinputdevice_getrawdevicefeature.md)
- [IGameInputDevice::AcquireExclusiveRawDeviceAccess](/ko/reference/input/gameinput/deprecated/interfaces/igameinputdevice/methods/igameinputdevice_acquireexclusiverawdeviceaccess.md)
- [IGameInputDevice::ReleaseExclusiveRawDeviceAccess](/ko/reference/input/gameinput/deprecated/interfaces/igameinputdevice/methods/igameinputdevice_releaseexclusiverawdeviceaccess.md)
- [사용되지 않는 GameInput API 멤버](/ko/reference/input/gameinput/deprecated/gameinput_deprecated_members.md)
