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.

100 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. stub.c
  5. Abstract:
  6. Stubs
  7. Author:
  8. Mark Lucovsky (markl) 30-Mar-1989
  9. Revision History:
  10. --*/
  11. #include "psxsrv.h"
  12. VOID
  13. Panic(
  14. IN PSZ PanicString
  15. )
  16. {
  17. KdPrint(("Panic: %s\n", PanicString));
  18. DbgBreakPoint();
  19. for(;;);
  20. }
  21. //
  22. // Api Stubs
  23. //
  24. BOOLEAN
  25. PsxSetUid(
  26. IN PPSX_PROCESS p,
  27. IN PPSX_API_MSG m
  28. )
  29. {
  30. m->Error = ENOSYS;
  31. return TRUE;
  32. }
  33. BOOLEAN
  34. PsxSetGid(
  35. IN PPSX_PROCESS p,
  36. IN PPSX_API_MSG m
  37. )
  38. {
  39. m->Error = ENOSYS;
  40. return TRUE;
  41. }
  42. BOOLEAN
  43. PsxCUserId(
  44. IN PPSX_PROCESS p,
  45. IN PPSX_API_MSG m
  46. )
  47. {
  48. m->Error = ENOSYS;
  49. return TRUE;
  50. }
  51. BOOLEAN
  52. PsxUname(
  53. IN PPSX_PROCESS p,
  54. IN PPSX_API_MSG m
  55. )
  56. {
  57. m->Error = ENOSYS;
  58. return TRUE;
  59. }
  60. BOOLEAN
  61. PsxTime(
  62. IN PPSX_PROCESS p,
  63. IN PPSX_API_MSG m
  64. )
  65. {
  66. m->Error = ENOSYS;
  67. return TRUE;
  68. }
  69. BOOLEAN
  70. PsxTtyName(
  71. IN PPSX_PROCESS p,
  72. IN PPSX_API_MSG m
  73. )
  74. {
  75. m->Error = ENOTTY;
  76. return TRUE;
  77. }