1 # Tscope5 list of bugs that are actually features
5 # Executing C++ programs {#cpp}
8 When executing a .cpp program you may get the following error:
10 Symbol not found: __al_mangled_main
12 In C++ the default arguments to your main function can't be left out.
14 int main(int argc, char **argv)
21 # Setting the display position {#disppos}
24 The display is not opened at the position that I specified.
26 The display position is dependent on the display size.
27 Set the display size first, then set the display position:
29 ts5_set_display_size(200.0, 200.0);
30 ts5_set_display_position(100.0, 100.0);