dll加载路径错误

This commit is contained in:
2025-06-08 17:40:21 +08:00
parent 232ba1a5ae
commit 2298e69a1c
84 changed files with 4749 additions and 241 deletions

View File

@ -0,0 +1,26 @@
#pragma once
#include "dll_macro.h"
#include <string>
#include <memory>
struct innerIdentifier;
class DLL_API Identifier {
public:
Identifier(std::shared_ptr<innerIdentifier> inner);
//Identifier(params string[] identifiers);
//Identifier(Identifier identifier, params string[] extensions)
int CompareTo(Identifier other);
//static void CheckIdentifiers(IEnumerable<string> identifiers)
std::string ToString();
int GetHashCode();
bool operator==(const Identifier& other) const;
bool operator!=(const Identifier& other) const;
bool operator<(const Identifier& id) const;
bool operator>(const Identifier& id) const;
bool isNull() const;
private:
std::shared_ptr<innerIdentifier> inner;
};