A primary data type
| 1353 | |
| 1354 | // A primary data type |
| 1355 | enum 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 |
| 1371 | enum ImGuiDir_ |
nothing calls this directly
no outgoing calls
no test coverage detected