#![allow(clippy::must_use_candidate)]
use crate::{ffi::_zend_execute_data, types::Zval, zend::ModuleEntry};
#[cfg(not(windows))]
pub extern "C" fn test_function(_: &mut _zend_execute_data, _: &mut Zval) {
}
#[cfg(windows)]
pub extern "vectorcall" fn test_function(_: &mut _zend_execute_data, _: &mut Zval) {
}
pub extern "C" fn test_startup_shutdown_function(_type: i32, _module_number: i32) -> i32 {
0
}
pub extern "C" fn test_info_function(_zend_module: *mut ModuleEntry) {
}
pub extern "C" fn test_deactivate_function() -> i32 {
0
}