Leaked source code of windows server 2003
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

  1. /**************************************************************************\
  2. * Module Name: callcf.c
  3. *
  4. * Copyright (c) 1985-91, Microsoft Corporation
  5. *
  6. * Template C file for server simple call table generation.
  7. *
  8. * History:
  9. * 10-Dec-1993 JerrySh Created.
  10. *
  11. \**************************************************************************/
  12. #include "precomp.h"
  13. #pragma hdrstop
  14. CONST PROC apfnSimpleCall[] = {
  15. (PROC)%%FOR_ALL_BUT_LAST%%,
  16. (PROC)%%FOR_LAST%%
  17. };
  18. #if DBG
  19. PCSZ apszSimpleCallNames[] = {
  20. "%%FOR_ALL_BUT_LAST%%",
  21. "%%FOR_LAST%%"
  22. };
  23. #endif
  24. CONST ULONG ulMaxSimpleCall = sizeof(apfnSimpleCall) / sizeof(PROC);