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.

37 lines
551 B

  1. /*++
  2. Copyright (c) 1989-1996 Microsoft Corporation
  3. Module Name:
  4. utsname.h
  5. Abstract:
  6. This module contains the utsname structure described in section 4.4.1.2
  7. of IEEE P1003.1/Draft 13.
  8. --*/
  9. #ifndef _UTSNAME_
  10. #define _UTSNAME_
  11. #include <limits.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. struct utsname {
  16. char sysname[_POSIX_NAME_MAX];
  17. char nodename[_POSIX_NAME_MAX];
  18. char release[_POSIX_NAME_MAX];
  19. char version[_POSIX_NAME_MAX];
  20. char machine[_POSIX_NAME_MAX];
  21. };
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif /* _UTSNAME_ */