Answer the question
In order to leave comments, you need to log in
How to pass enum to unmanaged code?
You need to pass enum to unmanaged code.
In native code itself, they are defined as:
typedef enum1
{
a = 1,
b = 2
} First;
typedef enum2
{
a
b
} Second;
Answer the question
In order to leave comments, you need to log in
Easy to define
public enum First
{
a = 1,
b = 2
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question