mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
720 B
43 lines
720 B
/*****************************************************************************/
|
|
|
|
#include "nulldefs.h"
|
|
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
}
|
|
#include "nodeskl.hxx"
|
|
#include "attrnode.hxx"
|
|
#include "miscnode.hxx"
|
|
#include "newexpr.hxx"
|
|
#include "ctxt.hxx"
|
|
|
|
STATUS_T
|
|
node_skl::EmitQualifier( class BufferManager *p )
|
|
{
|
|
return STATUS_OK;
|
|
}
|
|
STATUS_T
|
|
node_skl::EmitSpecifier( class BufferManager *p )
|
|
{
|
|
return STATUS_OK;
|
|
}
|
|
STATUS_T
|
|
node_skl::EmitModifier( class BufferManager *p )
|
|
{
|
|
return STATUS_OK;
|
|
}
|
|
unsigned short
|
|
node_skl::HasRef()
|
|
{
|
|
return 0;
|
|
}
|
|
unsigned short
|
|
node_skl::CountUsage( SIDE_T S, BOOL B )
|
|
{
|
|
return 0;
|
|
}
|
|
unsigned short
|
|
node_skl::AllocBlock( NODE_T N, class BufferManager *p )
|
|
{
|
|
return 0;
|
|
}
|