| |
| |
| |
| |
| |
| |
| #include <psxtypes/psxtypes.h> |
| #include <ntapi/nt_file.h> |
| #include <ntapi/nt_string.h> |
| #include <ntapi/nt_atomic.h> |
| #include <ntapi/nt_port.h> |
| #include <ntapi/nt_ipc.h> |
| #include <ntapi/nt_sem.h> |
| #include <ntapi/ntapi.h> |
| #include "ntapi_impl.h" |
| |
| int32_t __stdcall __ntapi_sem_fcntl( |
| __in nt_sem_info * sem, |
| __in void * hevent __optional, |
| __in nt_io_apc_routine * apc_routine __optional, |
| __in void * apc_context __optional, |
| __out nt_iosb * iosb, |
| __in uint32_t fs_control_code, |
| __in void * input_buffer __optional, |
| __in uint32_t input_buffer_length, |
| __out void * output_buffer __optional, |
| __in uint32_t output_buffer_length) |
| { |
| (void)sem; |
| (void)hevent; |
| (void)apc_routine; |
| (void)apc_context; |
| (void)iosb; |
| (void)fs_control_code; |
| (void)input_buffer; |
| (void)input_buffer_length; |
| (void)output_buffer; |
| (void)output_buffer_length; |
| |
| |
| return NT_STATUS_NOT_IMPLEMENTED; |
| } |