12345678910111213141516171819202122232425262728293031 |
- #ifndef SPL_HEAP_H
- #define SPL_HEAP_H
- #include "php.h"
- #include "php_spl.h"
- extern PHPAPI zend_class_entry *spl_ce_SplHeap;
- extern PHPAPI zend_class_entry *spl_ce_SplMinHeap;
- extern PHPAPI zend_class_entry *spl_ce_SplMaxHeap;
- extern PHPAPI zend_class_entry *spl_ce_SplPriorityQueue;
- PHP_MINIT_FUNCTION(spl_heap);
- #endif
|