|
|
1.1 ! root 1: // ! 2: // nono ! 3: // Copyright (C) 2019 [email protected] ! 4: // ! 5: ! 6: #include "netdriver_none.h" ! 7: ! 8: // コンストラクタ ! 9: NetDriverNone::NetDriverNone() ! 10: : inherited("None", NULL, NULL, NULL) ! 11: { ! 12: } ! 13: ! 14: // デストラクタ ! 15: NetDriverNone::~NetDriverNone() ! 16: { ! 17: } ! 18: ! 19: // 初期化 & オープン ! 20: bool ! 21: NetDriverNone::Init() ! 22: { ! 23: return true; ! 24: } ! 25: ! 26: // パケットを送信する ! 27: bool ! 28: NetDriverNone::SendPacket(const std::vector<uint8>& data) ! 29: { ! 30: return true; ! 31: } ! 32: ! 33: // 受信スレッド ! 34: void ! 35: NetDriverNone::ThreadRun() ! 36: { ! 37: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.