29 lines
516 B
C++
29 lines
516 B
C++
#include <iostream>
|
|
#include <algorithm>
|
|
#include <stdexcept>
|
|
#include "xcbXorg.h"
|
|
|
|
|
|
static CExportedImplexorApiDesc xcbXorgExportedImplexorApis[] =
|
|
{
|
|
{
|
|
.name = "video-implexor"
|
|
},
|
|
{
|
|
.name = NULL
|
|
}
|
|
};
|
|
|
|
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;
|
|
}
|