MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / ImGuiDataType_

Enum ImGuiDataType_

KBotExt/imgui/imgui.h:1355–1368  ·  view source on GitHub ↗

A primary data type

Source from the content-addressed store, hash-verified

1353
1354// A primary data type
1355enum ImGuiDataType_
1356{
1357 ImGuiDataType_S8, // signed char / char (with sensible compilers)
1358 ImGuiDataType_U8, // unsigned char
1359 ImGuiDataType_S16, // short
1360 ImGuiDataType_U16, // unsigned short
1361 ImGuiDataType_S32, // int
1362 ImGuiDataType_U32, // unsigned int
1363 ImGuiDataType_S64, // long long / __int64
1364 ImGuiDataType_U64, // unsigned long long / unsigned __int64
1365 ImGuiDataType_Float, // float
1366 ImGuiDataType_Double, // double
1367 ImGuiDataType_COUNT
1368};
1369
1370// A cardinal direction
1371enum ImGuiDir_

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected