CoolPotOS/include/net.h

18 lines
358 B
C
Raw Normal View History

2024-05-12 00:17:47 +08:00
#ifndef CRASHPOWEROS_NET_H
#define CRASHPOWEROS_NET_H
#include "../include/common.h"
typedef struct {
bool (*find)();
void (*init)();
void (*Send)(unsigned char* buffer, unsigned int size);
char card_name[50];
int use; // 正在使用
int flag;
} network_card;
void netcard_send(unsigned char* buffer, unsigned int size);
#endif