Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122
  1. #ifndef _IPXE_PEM_H
  2. #define _IPXE_PEM_H
  3. /** @file
  4. *
  5. * PEM image format
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #include <ipxe/image.h>
  10. /** Pre-encapsulation boundary marker */
  11. #define PEM_BEGIN "-----BEGIN"
  12. /** Post-encapsulation boundary marker */
  13. #define PEM_END "-----END"
  14. extern struct image_type pem_image_type __image_type ( PROBE_NORMAL );
  15. #endif /* _IPXE_PEM_H */