12 lines
274 B
C++
12 lines
274 B
C++
#pragma once
|
|
|
|
class ExtendedCertificate {
|
|
|
|
public:
|
|
static mcpe::string (*ExtendedCertificate_getIdentityName)(ExtendedCertificate*);
|
|
|
|
static mcpe::string getIdentityName(ExtendedCertificate* cert) {
|
|
return ExtendedCertificate_getIdentityName(cert);
|
|
}
|
|
};
|