Re: Compiling with GCC optimizations disabled

2019-03-26 Thread Rania_d
Hi, The gcc option -O enables different levels of optimization. Use -O0 to 
disable them and use -S to output assembly. -O3 is the highest level of 
optimization. Starting with gcc 4.8 the optimization level -Og is available. It 
enables optimizations that do not interfere with debugging and is the 
recommended default for the standard edit-compile-debug cycle.


Re: Calling stdcall from .dll

2019-03-26 Thread Rania_d
Hi, check out this link : 
[https://sites.google.com/site/jrlhost/links/excelcdll](https://sites.google.com/site/jrlhost/links/excelcdll)


Re: Screencast Series Ideas

2019-02-19 Thread Rania_d
Hi, I loved the ideas and the first video, good luck ! 


Re: How to immutably initialize parent object with private fields?

2019-02-19 Thread Rania_d
Hi, How to design an immutable object with complex initialization: 
[https://stackoverflow.com/questions/355172/how-to-design-an-immutable-object-with-complex-initialization](https://stackoverflow.com/questions/355172/how-to-design-an-immutable-object-with-complex-initialization)