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.
29 lines
662 B
29 lines
662 B
/**************************************************************************\
|
|
* Module Name: callcf.c
|
|
*
|
|
* Copyright (c) 1985-91, Microsoft Corporation
|
|
*
|
|
* Template C file for server simple call table generation.
|
|
*
|
|
* History:
|
|
* 10-Dec-1993 JerrySh Created.
|
|
*
|
|
\**************************************************************************/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
CONST PROC apfnSimpleCall[] = {
|
|
(PROC)%%FOR_ALL_BUT_LAST%%,
|
|
(PROC)%%FOR_LAST%%
|
|
};
|
|
|
|
#if DBG
|
|
PCSZ apszSimpleCallNames[] = {
|
|
"%%FOR_ALL_BUT_LAST%%",
|
|
"%%FOR_LAST%%"
|
|
};
|
|
#endif
|
|
|
|
CONST ULONG ulMaxSimpleCall = sizeof(apfnSimpleCall) / sizeof(PROC);
|
|
|