Who can help me with dll library. I generate it by...
# kotlin-native
z
Who can help me with dll library. I generate it by kotlin native and want to use in c#. How can I get class with properties and methods, which is created in kotlin native?
d
I don't think that's possible. Have you looked at the generated header file?
z
Copy code
struct {
                libpst_KType* (*_type)(void);
                libpst_kref_com_tullynore_pst_domain_PstFile (*PstFile)(const char* filePath, const char* mode);
                libpst_kref_com_tullynore_pst_domain_Header (*get_header)(libpst_kref_com_tullynore_pst_domain_PstFile thiz);
                libpst_kref_com_tullynore_pst_domain_messaging_Messaging (*get_messaging)(libpst_kref_com_tullynore_pst_domain_PstFile thiz);
                void (*close)(libpst_kref_com_tullynore_pst_domain_PstFile thiz);
                struct {
                  libpst_KType* (*_type)(void);
                  libpst_kref_com_tullynore_pst_domain_PstFile_Companion (*_instance)();
                } Companion;
              } PstFile;
Here one of the classes, which I need to get in c#