Skip to content

Commit

Permalink
remove SetOperationMode #14
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemeowx2 committed Apr 22, 2019
1 parent 11e3666 commit 7e128af
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions ldn_mitm/source/ldn_icommunication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ Result ICommunicationInterface::SetWirelessControllerRestriction() {
return 0;
}

Result ICommunicationInterface::SetOperationMode(u8 mode) {
return 0;
}

Result ICommunicationInterface::GetState(Out<u32> state) {
state.SetValue(static_cast<u32>(this->lanDiscovery.getState()));

Expand Down
3 changes: 0 additions & 3 deletions ldn_mitm/source/ldn_icommunication.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ enum LdnCommCmd {
LdnCommCmd_Initialize = 400,
LdnCommCmd_Finalize = 401,
LdnCommCmd_InitializeSystem2 = 402, // nyi
LdnCommCmd_SetOperationMode = 403, // nyi
};

class ICommunicationInterface : public IServiceObject {
Expand Down Expand Up @@ -94,7 +93,6 @@ class ICommunicationInterface : public IServiceObject {
Result Connect(ConnectNetworkData dat, InPointer<NetworkInfo> data);
Result GetNetworkInfoLatestUpdate(OutPointerWithServerSize<NetworkInfo, 1> buffer, OutPointerWithClientSize<NodeLatestUpdate> pUpdates);
Result SetWirelessControllerRestriction();
Result SetOperationMode(u8 mode);
public:
DEFINE_SERVICE_DISPATCH_TABLE {
MakeServiceCommandMeta<LdnCommCmd_GetState, &ICommunicationInterface::GetState>(),
Expand All @@ -120,6 +118,5 @@ class ICommunicationInterface : public IServiceObject {
MakeServiceCommandMeta<LdnCommCmd_Initialize, &ICommunicationInterface::Initialize>(),
MakeServiceCommandMeta<LdnCommCmd_Finalize, &ICommunicationInterface::Finalize>(),
MakeServiceCommandMeta<LdnCommCmd_InitializeSystem2, &ICommunicationInterface::Initialize>(),
MakeServiceCommandMeta<LdnCommCmd_SetOperationMode, &ICommunicationInterface::SetOperationMode>(),
};
};

0 comments on commit 7e128af

Please sign in to comment.