Add SDL and create basic window

This commit is contained in:
Sajid
2024-09-30 20:57:40 +06:00
parent c20aadac60
commit 2122f247ac
18 changed files with 107 additions and 47 deletions

View File

@@ -0,0 +1,23 @@
#include <stdafx.h>
#include "video.h"
#include "window.h"
#include "kernel/function.h"
void VdInitializeSystem()
{
Window::Init();
}
void* VdGetGlobalDevice()
{
return nullptr;
}
// Direct3D stubs
GUEST_FUNCTION_STUB(sub_824EB290);
GUEST_FUNCTION_STUB(sub_82BDA8C0);
GUEST_FUNCTION_STUB(sub_82BE05B8);
// Movie player stubs
GUEST_FUNCTION_STUB(sub_82AE3638);
GUEST_FUNCTION_STUB(sub_82AE2BF8);