>Hex-Rays IDA Pro Page

Help index | Search

IDC: Functions

A function in IDC returns a value. There are 2 kinds of functions:
  - built-in functions
  - user-defined functions
A user-defined function is declared this way:
  static func(arg1,arg2,arg3)
  {
    statements ...
  }
It is not nesessary to specify the parameter types because any variable can contain a string or a number. All necessary type conversions are performed automatically.
Index | Previous topic | Next topic