mirror of
https://github.com/opa334/TrollStore.git
synced 2025-04-13 07:43:12 +08:00
11 lines
247 B
C
11 lines
247 B
C
#ifndef __NECP_H__
|
|
#define __NECP_H__
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
int necp_open(int flags);
|
|
int necp_client_action(int necp_fd, uint32_t action, uint8_t *client_id, size_t client_id_len, uint8_t *buffer, size_t buffer_size);
|
|
|
|
#endif
|