[Win,x64] Fixed WinApi types and function calls.

Lots of these truncated 64bit pointer or handle types to 32bit.
This commit is contained in:
Thomas Roß
2024-05-15 19:52:01 +02:00
parent bac882c7d6
commit 6ecafd9e68
12 changed files with 43 additions and 44 deletions

View File

@@ -56,7 +56,7 @@ public:
private:
#endif // DD_ACCESS_RING_0
#if defined(WIN32)
unsigned event_os_handle; // this is the Win32 Event Handle
void *event_os_handle; // this is the Win32 Event Handle
#endif // WIN32
public:
@@ -77,9 +77,8 @@ public:
private:
#endif // DD_ACCESS_RING_0
#if defined(WIN32)
unsigned task_os_handle; // This is the Win32 EventHandle
unsigned task_os_id; // Win32 Thread ID
#endif // WIN32
void *task_os_handle; // This is the Win32 Thread Handle
#endif // WIN32
public:
osTask(unsigned (*func)(void *), tTaskPriority priority, void *parm = NULL);