2025-01-08 17:16:49 -04:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <algorithm>
|
2025-01-08 18:00:07 -04:00
|
|
|
#include <stdexcept>
|
2025-01-08 17:16:49 -04:00
|
|
|
#include "xcbXorg.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static CExportedImplexorApiDesc xcbXorgExportedImplexorApis[] =
|
|
|
|
|
{
|
|
|
|
|
{
|
2025-01-08 18:00:07 -04:00
|
|
|
.name = "video-implexor"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = NULL
|
2025-01-08 17:16:49 -04:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|