mirror of
https://github.com/decompals/wibo.git
synced 2025-12-17 00:47:18 +00:00
13 lines
316 B
C++
13 lines
316 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace vcruntime {
|
|
|
|
PVOID CDECL memcpy(PVOID dest, LPCVOID src, SIZE_T count);
|
|
PVOID CDECL memset(PVOID dest, int ch, SIZE_T count);
|
|
int CDECL memcmp(LPCVOID buf1, LPCVOID buf2, SIZE_T count);
|
|
PVOID CDECL memmove(PVOID dest, LPCVOID src, SIZE_T count);
|
|
|
|
} // namespace vcruntime
|