25 lines
454 B
C++
25 lines
454 B
C++
#include <iostream>
|
|
#include <algorithm>
|
|
#include "xcbXorg.h"
|
|
|
|
|
|
static CExportedImplexorApiDesc xcbXorgExportedImplexorApis[] =
|
|
{
|
|
{
|
|
.name = "XcbXorg"
|
|
}
|
|
};
|
|
|
|
static CSenseApiDesc xcbXorgApiDesc =
|
|
{
|
|
.name = "XcbXorg",
|
|
.exportedImplexorApis = xcbXorgExportedImplexorApis
|
|
};
|
|
|
|
extern HK_UNMANGLED getSenseApiDescFn HK_GET_SENSE_API_DESC_FN_NAME;
|
|
|
|
const CSenseApiDesc *HK_GET_SENSE_API_DESC_FN_NAME(void)
|
|
{
|
|
return &xcbXorgApiDesc;
|
|
}
|