1
0
mirror of https://github.com/narzoul/DDrawCompat synced 2024-12-30 08:55:36 +01:00
DDrawCompat/DDrawCompat/DDraw/ActivateAppHandler.h
narzoul e83371afed Moved GDI synchronization to UMD level
Fixes deadlock when starting Rayman 2 (issue #30).
2019-08-03 12:09:12 +02:00

14 lines
173 B
C++

#pragma once
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
namespace DDraw
{
namespace ActivateAppHandler
{
void setCooperativeLevel(HWND hwnd, DWORD flags);
}
}