wincompat.h is a stripped down version coming from linapple-pie with the bare minimum common types. Each group of functions in its own file. Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
8 lines
261 B
C
8 lines
261 B
C
#pragma once
|
|
|
|
#include "linux/windows/wincompat.h"
|
|
#include <cstddef>
|
|
|
|
HRESULT StringCbCopy(char * pszDest, const size_t cbDest, const char * pszSrc);
|
|
HRESULT StringCbCat(char * pszDest,const size_t cbDest, const char * pszSrc);
|
|
#define StringCbPrintf snprintf
|