Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

version.h 630B

123456789101112131415161718192021222324252627
  1. #ifndef _IPXE_VERSION_H
  2. #define _IPXE_VERSION_H
  3. /** @file
  4. *
  5. * Version number
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #include <wchar.h>
  10. extern unsigned long build_timestamp;
  11. extern unsigned long build_id;
  12. extern const int product_major_version;
  13. extern const int product_minor_version;
  14. extern const char product_version[];
  15. extern const char product_name[];
  16. extern const char product_short_name[];
  17. extern const char build_name[];
  18. extern const wchar_t product_wversion[];
  19. extern const wchar_t product_wname[];
  20. extern const wchar_t product_short_wname[];
  21. extern const wchar_t build_wname[];
  22. #endif /* _IPXE_VERSION_H */