mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-10 02:00:05 -04:00
[Win,x64] Fixed WinApi types and function calls.
Lots of these truncated 64bit pointer or handle types to 32bit.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user