- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
obviously having declaration of
typedef enum
{
VM_THREAD_PRIORITY_HIGHEST,
VM_THREAD_PRIORITY_HIGH,
VM_THREAD_PRIORITY_NORMAL,
VM_THREAD_PRIORITY_LOW,
VM_THREAD_PRIORITY_LOWEST
} vm_thread_priority;
this is just not correct:
void vm_set_current_thread_priority(vm_thread_priority priority)
{
SetThreadPriority(GetCurrentThread(), (int)priority);
}
please fix it in the next version.
ru.
typedef enum
{
VM_THREAD_PRIORITY_HIGHEST,
VM_THREAD_PRIORITY_HIGH,
VM_THREAD_PRIORITY_NORMAL,
VM_THREAD_PRIORITY_LOW,
VM_THREAD_PRIORITY_LOWEST
} vm_thread_priority;
this is just not correct:
void vm_set_current_thread_priority(vm_thread_priority priority)
{
SetThreadPriority(GetCurrentThread(), (int)priority);
}
please fix it in the next version.
ru.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for pointing to that. We will fix the issue.
Vladimir

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page