I am trying to use a call-recording API using sockets. We have the API documentation, but the samples are all in C++.
How would I declare the following in VB.NET or C#?
#define SIF_GENERAL 0x08000000 #define SIF_CONFIGURATION 0x08010000 #define SIF_ARCHIVE 0x08020000 #define SIF_SEARCH 0x08030000 #define SIF_REPLAY 0x08040000 #define SIF_STATISTICS 0x08050000 #define SIF_ENGINEER 0x08060000
Note from the documentation: message identifiers are unsigned 32-bit values (ULONG).
VB.NET
C#