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

# XMEM_OPTION

> XMEM_OPTION

# XMEM\_OPTION

메모리 옵션의 형식과 값을 지정합니다.

## 구문

```cpp theme={null}
typedef struct XMEM_OPTION {  
    XMEM_OPTIONS Option;  
    union  
    {  
        BOOL Bool;  
        UINT64 Int;  
        PVOID Pointer;  
    } u;  
} XMEM_OPTION  
```

### 멤버

*Option*\
형식: [XMEM\_OPTIONS](/reference/system/xmem/enums/xmem_options)

설정을 적용할 옵션 유형입니다.

*Bool*\
형식: BOOL

Type이 Bool 매개 변수를 지정하는 경우 설정할 BOOL 값입니다.

*Int*\
형식: UINT64

Type이 Int 매개 변수를 지정하는 경우 설정할 Int 값입니다.

*Pointer*\
형식: PVOID

Type이 Pointer 매개 변수를 지정하는 경우 설정할 포인터 값입니다.

## 설명

*XMEM\_OPTION*은 [XMemSetOption](/reference/system/xmem/functions/xmemsetoption)과 함께 사용되어 설정할 구성 옵션 및 값을 지정합니다.

## 요구 사항

**헤더:** xmem.h\
**지원 플랫폼**: XBOX One 제품군 콘솔 및 XBOX Series 콘솔

## 함께 보기

[xmem](/reference/system/xmem/xmem_members)


## Related topics

- [XMEM_OPTIONS](/ko/reference/system/xmem/enums/xmem_options.md)
- [XMemSetOption](/ko/reference/system/xmem/functions/xmemsetoption.md)
- [XMEM_ALLOCATION_HOOKS](/ko/reference/system/xmem/structs/xmem_allocation_hooks.md)
- [XMemVirtualQuery](/ko/reference/system/xmem/functions/xmemvirtualquery.md)
- [XMemGetWorkingSetStatistics](/ko/reference/system/xmem/functions/xmemgetworkingsetstatistics.md)
