C/C++
cprog.asc
Associated article: C Programming
Tags: C/C++
_C PROGRAMMING COLUMN_
by Al Stevens
[LISTING ONE]
// --------------- desktop.cpp
#include <new.h>
#include "desktop.h"
DeskTop desktop;
#ifdef MSC
int NoMemory(unsigned int)
{
exit(-1);
return 0;
}
#else
void NoMemory()
{
exit(-1);
}
#endif
DeskTop::DeskTop()
{
...


