Source code of Windows XP (NT5)
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.

101 lines
4.6 KiB

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. defines.h
  5. Abstract:
  6. header file to define out the unimplemneted functions
  7. Author:
  8. Felix Wong(t-felixw) 6-Oct-1996
  9. Environment:
  10. Revision History:
  11. --*/
  12. #include "assert.h"
  13. #define NPCloseEnum(p1) (assert(((void)p1,\
  14. FALSE)),\
  15. FALSE)
  16. #define NPEnumResource(p1, p2, p3, p4) (assert(((void)p1,\
  17. (void)p2,\
  18. (void)p3,\
  19. (void)p4,\
  20. FALSE)),\
  21. FALSE)
  22. #define NPOpenEnum(p1, p2, p3, p4, p5) (assert(((void)p1,\
  23. (void)p2,\
  24. (void)p3,\
  25. (void)p4,\
  26. (void)p5,\
  27. FALSE)),\
  28. FALSE)
  29. #define NPAddConnection(p1, p2, p3) (assert(((void)p1,\
  30. (void)p2,\
  31. (void)p3,\
  32. FALSE)),\
  33. FALSE)
  34. #define NPCancelConnection(p1, p2) (assert(((void)p1,\
  35. (void)p2,\
  36. FALSE)),\
  37. FALSE)
  38. #define NtOpenFile(p1, p2, p3, p4, p5, p6) (assert(((void)p1,\
  39. (void)p2,\
  40. (void)p3,\
  41. (void)p4,\
  42. (void)p5,\
  43. (void)p6,\
  44. FALSE)),\
  45. FALSE)
  46. #define NtClose(p1) (assert(((void)p1,\
  47. FALSE)),\
  48. FALSE)
  49. #define NtFsControlFile(p1,p2,p3,p4,p5,p6,p7,p8,p9,p10) (assert(((void)p1,\
  50. (void)p2,\
  51. (void)p3,\
  52. (void)p4,\
  53. (void)p5,\
  54. (void)p6,\
  55. (void)p7,\
  56. (void)p8,\
  57. (void)p9,\
  58. (void)p10,\
  59. FALSE)),\
  60. FALSE)
  61. #define NtCreateFile(p1,p2,p3,p4,p5,p6,p7,p8,p9,p10,p11) (assert(((void)p1,\
  62. (void)p2,\
  63. (void)p3,\
  64. (void)p4,\
  65. (void)p5,\
  66. (void)p6,\
  67. (void)p7,\
  68. (void)p8,\
  69. (void)p9,\
  70. (void)p10,\
  71. (void)p11,\
  72. FALSE)),\
  73. FALSE)
  74. #define NtQueryDefaultLocale(p1, p2) \
  75. *(p2) = LANG_ENGLISH, STATUS_SUCCESS
  76. #define NPCancelConnection(p1, p2) (assert(((void)p1,\
  77. (void)p2,\
  78. FALSE)),\
  79. FALSE)
  80. #define NwAttachToServer(p1, p2) (assert(((void)p1,\
  81. (void)p2,\
  82. FALSE)),\
  83. FALSE)
  84. #define NwDetachFromServer(p1) (assert(((void)p1,\
  85. FALSE)),\
  86. FALSE)