Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to pass parameters to H file?
#5
Petr, I get the impression that you didn't try my suggestion
Code: (Select All)
Declare Library "plus"

    Function calc_plus% (byval a As Integer, byval b As Integer)

End Declare



c% = calc_plus(5, 6)

Print c%
Code: (Select All)
short calc_plus (short a, short b)

{

    short c = a + b;

    return c;

}
Reply


Messages In This Thread
how to pass parameters to H file? - by Petr - 04-11-2023, 03:30 PM
RE: how to pass parameters to H file? - by Jack - 04-11-2023, 03:50 PM
RE: how to pass parameters to H file? - by Jack - 04-11-2023, 03:54 PM
RE: how to pass parameters to H file? - by Petr - 04-11-2023, 04:59 PM
RE: how to pass parameters to H file? - by Jack - 04-11-2023, 05:09 PM
RE: how to pass parameters to H file? - by Jack - 04-11-2023, 05:17 PM
RE: how to pass parameters to H file? - by Petr - 04-11-2023, 05:31 PM



Users browsing this thread: 1 Guest(s)