refactor: replace UInt32 with uint32_t

This commit is contained in:
sithlord48
2025-01-10 21:13:19 -05:00
committed by Nick Bolton
parent 27eb83c981
commit 96092df4fc
119 changed files with 684 additions and 684 deletions

View File

@ -57,7 +57,7 @@ void SimpleEventQueueBuffer::waitForEvent(double timeout)
}
}
IEventQueueBuffer::Type SimpleEventQueueBuffer::getEvent(Event &, UInt32 &dataID)
IEventQueueBuffer::Type SimpleEventQueueBuffer::getEvent(Event &, uint32_t &dataID)
{
ArchMutexLock lock(m_queueMutex);
if (!m_queueReady) {
@ -69,7 +69,7 @@ IEventQueueBuffer::Type SimpleEventQueueBuffer::getEvent(Event &, UInt32 &dataID
return kUser;
}
bool SimpleEventQueueBuffer::addEvent(UInt32 dataID)
bool SimpleEventQueueBuffer::addEvent(uint32_t dataID)
{
ArchMutexLock lock(m_queueMutex);
m_queue.push_front(dataID);