cwick

571
Reputation
53 views

Registered User

Name cwick
Member for 1 year
Seen 23 hours ago
Website
Location US
Age 25
Dec
2
revised C++ pass pointer by reference and assign default value
fixed null pointer bug
Dec
2
accepted C++ pass pointer by reference and assign default value
Dec
2
answered C++ pass pointer by reference and assign default value
Dec
2
awarded  Organizer
Dec
2
revised scroll using mousewheel inside panel with dynamically added picturebox controls
edited tags
Dec
2
answered scroll using mousewheel inside panel with dynamically added picturebox controls
Dec
2
comment Drawing with c++ visual studio 2010 beta?
This is not a C++ question. C++ has no support for drawing anything. Could you be more specific?
Dec
1
answered common errors and fixes in C++
Dec
1
comment HELP linking library in DLL project
In Windows a .lib file can either be a static library or an import library for a DLL. Looks like you're linking against the import library instead of a static library. You have to either obtain a precompiled OpenSSL static library or else compile it yourself.
Dec
1
comment A recurring const-connundrum
In fact I just noticed that in C++ strchr has two versions: const char* strchar(const char*, char) and char* strchar(char*, char) which would prevent the kind of misue UncleBens is talking about. So I guess this is kind of like putting a safety on a gun ; it's there to prevent accidental misfire, not to make it impossible for somebody to fire the gun.
Nov
30
accepted Accessing a Python traceback from the C API
Nov
30
revised C++ map insertion and lookup performance and storage overhead
added 1 characters in body
Nov
30
answered A recurring const-connundrum
Nov
30
answered C++ map insertion and lookup performance and storage overhead
Nov
30
answered HELP linking library in DLL project
Nov
26
comment Accessing a Python traceback from the C API
Not sure I understand how this helps. I am not writing an extension module, but rather embedding the interpreter. So to implement your solution (if I'm understand you right) I would have to write a blob of Python code and store it in my C++ code as a string. Then at some point I would have to compile the code, create a function out of it, then call the function via PyObject_CallObject. This seems like a ton of work compared to just examining the native stack frame structures in C.
Nov
25
answered Accessing a Python traceback from the C API
Nov
25
asked Accessing a Python traceback from the C API
Nov
25
answered Embedding one cmake project inside of another?
Nov
25
answered Any real world CMake project example ?
Sep
6
awarded  Yearling
Jul
21
awarded  Popular Question
Jul
15
revised What are the best programming articles?
edited body
Jul
6
awarded  Notable Question
Jun
24
asked The “Self-Factory” Pattern