Forum: C Apr 10th, 2009 |
| Replies: 2 Views: 308 Thanks, i thought inline was c++ feature.
I use two indirections, because my other functions require them and I want to keep it simple to use. |
Forum: C Apr 10th, 2009 |
| Replies: 2 Views: 308 I have a very simple one line function and i want to replace it with macro, but macro doesn't seem to work.
Function:
int stack_empty(stack ** this_stack)
{
return *this_stack == NULL;
}
... |
Forum: Windows NT / 2000 / XP Dec 7th, 2008 |
| Replies: 5 Views: 847 That was hardware problems. Thread can be locked. |
Forum: Windows NT / 2000 / XP Dec 7th, 2008 |
| Replies: 5 Views: 847 A friend asked me to reinstall windows for him, so i did, but it appears that neither nForce audio drivers (4.62), neither realtek ac97 drivers work fine (tested old version in manufacturers site and... |
Forum: Pascal and Delphi Oct 7th, 2008 |
| Replies: 6 Views: 1,538 I am a student and i need to write some functions or procedures to handle queue. One of the requirement is that it should be written in pascal (not any other language, not object pascal/delphi), so i... |
Forum: Pascal and Delphi Oct 7th, 2008 |
| Replies: 6 Views: 1,538 Hi, I have a question. Is it possible to copy all contents from record to typed pointer which has same items? Example here:
program linked_list_queue;
type queue = ^myrecord;
myrecord =... |
Forum: C++ Jun 26th, 2008 |
| Replies: 1 Views: 1,938 Solved, got answer in another forum: http://www.qtcentre.org/forum/f-newbie-4/t-loop-inside-qthread-causes-qthread-destroyed-while-thread-is-still-running-14429.html |
Forum: C++ Jun 26th, 2008 |
| Replies: 1 Views: 1,938 Hi, I am new to C++ and Qt and despite that i am thinking of using threads in my app. Here is an example code which outputs "." and then "QThread: Destroyed while thread is still running" error after... |
Forum: C++ Jun 25th, 2008 |
| Replies: 0 Views: 525 Hi, i am quite new to C++ and I am making quite complicated linux app: i need it to show wheather usb device (phone) is connected. I have a procedure which would check if phone is connected, but i... |
Forum: C++ Jun 14th, 2008 |
| Replies: 2 Views: 1,873 |
Forum: C++ Jun 14th, 2008 |
| Replies: 2 Views: 1,873 Hi, i am new to c/c++ and i need to execute external cabextract program to extract archive, but if i sprintf command and file name to command variable i get segmentation fault. How i need to modify... |