-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IAMVideoProcAmp parameter type is 64bit? #71
Comments
|
Sorry, I gave the wrong example. [ComImport]
[Guid("c6e13360-30ac-11d0-a18c-00a0c9118956")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IAMVideoProcAmp
{
[PreserveSig]
HRESULT GetRange(int Property, out long pMin, out long pMax, out long pSteppingDelta, out long pDefault, out long pCapsFlags);
[PreserveSig]
HRESULT Set(int Property, int lValue, int Flags);
[PreserveSig]
HRESULT Get(int Property, out long lValue, out long Flags);
} |
Same answer, long C++ is int C# so there's nothing to change. |
Close due to inactivity |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
According to IAMVideoProcAmp
long type maybe 32 bit not c# long type?
The text was updated successfully, but these errors were encountered: