internal static extern bool Query(NativeQueryOption queryOption);
Beispiel #2
0
        /// <summary>
        ///     Query an Option.
        /// </summary>
        /// <param name="queryOption">
        ///     An option to query.
        /// </param>
        /// <returns>
        ///     A boolean true if the option is supported. A boolean false otherwise.
        /// </returns>
        internal static bool Query(NativeQueryOption queryOption)
        {
            var isSupported = NativeCapstoneImport.Query(queryOption);

            return(isSupported);
        }