mirror of
https://github.com/EverythingWindows/ShiftOS-TheRevival-Old.git
synced 2025-01-23 10:12:16 +00:00
20 lines
668 B
VB.net
20 lines
668 B
VB.net
Module Com_App
|
|
Public AppName As String
|
|
|
|
Public Sub App()
|
|
AppName = command.Substring(4)
|
|
Select Case Strings.ComputerInfo(7)
|
|
Case 1
|
|
Select Case AppName
|
|
Case "knowledge_input"
|
|
If Strings.AvailableFeature(37) = 1 Then
|
|
DuWM_NewProcess(Uni_KnowledgeInput)
|
|
End If
|
|
Case "shifter"
|
|
If Strings.AvailableFeature(36) = 1 Then
|
|
DuWM_NewProcess(DuWM_Shifter)
|
|
End If
|
|
End Select
|
|
End Select
|
|
End Sub
|
|
End Module
|