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.

72 lines
1.4 KiB

  1. /******************************Module*Header*******************************\
  2. * Module Name: script.c
  3. *
  4. * (Brief description)
  5. *
  6. * Created: 13-Mar-1992 09:57:12
  7. * Author: Eric Kutter [erick]
  8. *
  9. * Copyright (c) 1990-1999 Microsoft Corporation
  10. *
  11. * (General description of its use)
  12. *
  13. * Dependencies:
  14. *
  15. \**************************************************************************/
  16. #include "precomp.h"
  17. #pragma hdrstop
  18. /******************************Member*Function*****************************\
  19. * GdiPlayScript()
  20. *
  21. * History:
  22. * 13-Mar-1992 Eric Kutter [erick]
  23. * Wrote it.
  24. \**************************************************************************/
  25. BOOL GdiPlayScript(
  26. PULONG pulScript,
  27. ULONG cjScript,
  28. PULONG pulEnv,
  29. ULONG cjEnv,
  30. PULONG pulOutput,
  31. ULONG cjOutput,
  32. ULONG cLimit)
  33. {
  34. pulScript;
  35. cjScript;
  36. pulEnv;
  37. cjEnv;
  38. pulOutput;
  39. cjOutput;
  40. cLimit;
  41. return(FALSE);
  42. }
  43. /******************************Public*Routine******************************\
  44. * OpenRemoteGdi()
  45. *
  46. * History:
  47. * 13-Mar-1992 -by- Eric Kutter [erick]
  48. * Wrote it.
  49. \**************************************************************************/
  50. BOOL GdiPlayDCScript(
  51. HDC hdc,
  52. PULONG pulScript,
  53. ULONG cjScript,
  54. PULONG pulOutput,
  55. ULONG cjOutput,
  56. ULONG cLimit)
  57. {
  58. hdc;
  59. pulScript;
  60. cjScript;
  61. pulOutput;
  62. cjOutput;
  63. cLimit;
  64. return(FALSE);
  65. }