w32api_register_function描述bool w32api_register_function ( string library, string function_name, string return_type)
这个函数尝试在 libary 中查找一个名为 function_name 的函数并且尝试把它导入 PHP。这个函数将使用 return_type 类型被注册。这个类型可以是一个标准的 PHP 类型,或者使用 w32api_deftype() 函数定义类型。所有的名称大小写敏感,内建的函数使用小写字母。 如果成功则返回 TRUE,失败则返回 FALSE。 | ||||