about summary refs log tree commit diff stats
path: root/src/os/my_cpuid_wine.c
blob: c2d24b1c11fb1cd7de03f2d0e79764d9cd71d010 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <windows.h>

#include "my_cpuid.h"

const char* getBoxCpuName()
{
    return NULL;
}

void my_cpuid(x64emu_t* emu, uint32_t tmp32u)
{
    // FIXME
}

uint32_t helper_getcpu(x64emu_t* emu) {
    return 0;
}

uint32_t get_random32(void)
{
    // FIXME
    return 0;
}

uint64_t get_random64(void)
{
    // FIXME
    return 0;
}