package Gmface.Gm_Application.Preferences is
   
   pragma Shared_Passive (Gmface.Gm_Application.Preferences);
   
   type Inputs_Devices_Array is array (1..128) of Integer;
   type Outputs_Devices_Array is array (1..128) of Integer;
   
   Inputs_Devices : Inputs_Devices_Array := (others => (-1));
   Outputs_Devices : Inputs_Devices_Array := (others => (-1));
   
end Gmface.Gm_Application.Preferences;