Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.
/L1"C/C++" C_LANG Line Comment = // Block Comment On = /* Block Comment Off = */ Escape Char = \ String Chars = "' File Extensions = C CPP CC CXX H HPP AWK
/Delimiters = ~!@%^&*()-+=|\/{}[]:;"'<> , .?
/Function String = "%^([a-zA-Z_0-9^[^]*]+^)[ ^t]+([^p*&:, ^t^[^]a-zA-Z_0-9.!]++)[~;]"
/Function String 1 = "%[a-zA-Z_0-9*]*::^([a-zA-Z_0-9^~]+^)[ ^t^p]++([^p*&:, ^t^[^]/*^-'=:&a-zA-Z_0-9./(!]++)[~;]"
/Function String 2 = "%[a-zA-Z_0-9][a-zA-Z_0-9^[^]]+[ ^t*]+^([a-zA-Z_0-9]+^)[ ^t]++([^p*&:, ^t^[^]a-zA-Z_0-9./(!]++)[~;]"
/Function String 3 = "%[a-zA-Z_0-9*&$^[^]*]+[ ^t]+[a-zA-Z_0-9*&$^[^]]+[ ^t*]+^([a-zA-Z_0-9]+^)[ ^t]++([^p*&:, ^t^[^]a-zA-Z_0-9./(!]++)[~;]"
/Function String 4 = "%[a-z_0-9^[^]*]++ [a-z_0-9*^[^]]+[ ^t]++[a-z_0-9*^[^]]+[ ^t]++^([*a-z_0-9]+^)[ ^t]++([^p*&:, ^t^[^]a-z_0-9./(!]++)[~;]"
/Function String 5 = "%^([a-zA-Z_0-9^[^]*]+^)[ ^t]++([^p*&:, ^t^[^]a-zA-Z_0-9./()!]++)[~;]"/L1"C/C++" C_LANG Line Comment = // Block Comment On = /* Block Comment Off = */ Escape Char = \ String Chars = "' File Extensions = C CPP CC CXX H HPP AWK
/Delimiters = ~!@%^&*()-+=|\/{}[]:;"'<> , .?
/Regexp Type = Perl
/Function String = "^(?(?=[\w\[\]\:]+[ \t]+)([\w\[\]\*:]+)[ \t]+)(?(?=[\w\[\]\*:]+[ \t]+)([\w\[\]\*:]+)[ \t]+)(?(?=[\w\[\]\*:]+[ \t]+)([\w\[\]\*:]+)[ \t]+)(?(?=[\w\[\]\*:]+[ \t]+)([\w\[\]\*:]+)[ \t]+)([\w\[\]\*:]+)[ \t]*(\((?:[\s\*&:,\[\]\w/\\]|=(?!=))*\))[ \t\{\*&:,\[\]\w/\\]*$"

// UltraEdit function list test
/**********************************************************************
* main () *
***********************************************************************/
void main(void)
{
if (option_values_2 [TEMP_FORCE_PR_EN] [Temp]==1) color = LIGHTGREY;
else if (result_of_saf) color = YELLOW; //in function list as "f"
else color=GREEN;
}
void function1 (void) //in function list as "1"
{
int i;
}
void function2(void) //in function list as "function2"
{
int i;
}
/*
void save_array(char * file_name) //in function list as "y"
{
int i;
}
void read_array(char * file_name) //in function list as "y"
{
int i;
}
*/