@@ -202,6 +202,12 @@ internal static extern void Vehicle_SetNeonActive(IntPtr vehiclePointer, bool le
202202
203203 [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
204204 internal static extern void Vehicle_SetNeonColor ( IntPtr vehiclePointer , Rgba color ) ;
205+
206+ [ DllImport ( DllName , CallingConvention = NativeCallingConvention ) ]
207+ internal static extern void Vehicle_GetAppearanceDataBase64 ( IntPtr vehiclePointer , ref IntPtr text ) ;
208+
209+ [ DllImport ( DllName , CallingConvention = NativeCallingConvention ) ]
210+ internal static extern void Vehicle_LoadAppearanceDataFromBase64 ( IntPtr vehiclePointer , string base64 ) ;
205211
206212 [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
207213 internal static extern bool Vehicle_IsEngineOn ( IntPtr vehiclePointer ) ;
@@ -217,6 +223,12 @@ internal static extern void Vehicle_SetNeonActive(IntPtr vehiclePointer, bool le
217223
218224 [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
219225 internal static extern void Vehicle_SetHeadlightColor ( IntPtr vehiclePointer , byte color ) ;
226+
227+ [ DllImport ( DllName , CallingConvention = NativeCallingConvention ) ]
228+ internal static extern uint Vehicle_GetRadioStationIndex ( IntPtr vehiclePointer ) ;
229+
230+ [ DllImport ( DllName , CallingConvention = NativeCallingConvention ) ]
231+ internal static extern void Vehicle_SetRadioStationIndex ( IntPtr vehiclePointer , uint stationIndex ) ;
220232
221233 [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
222234 internal static extern bool Vehicle_IsSirenActive ( IntPtr vehiclePointer ) ;
@@ -378,6 +390,18 @@ internal static extern void Vehicle_SetBumperDamageLevel(IntPtr vehiclePointer,
378390
379391 [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
380392 internal static extern void Vehicle_LoadDamageDataFromBase64 ( IntPtr vehiclePointer , string base64 ) ;
393+
394+ [ DllImport ( DllName , CallingConvention = NativeCallingConvention ) ]
395+ internal static extern bool Vehicle_IsManualEngineControl ( IntPtr vehiclePointer ) ;
396+
397+ [ DllImport ( DllName , CallingConvention = NativeCallingConvention ) ]
398+ internal static extern void Vehicle_SetManualEngineControl ( IntPtr vehiclePointer , bool state ) ;
399+
400+ [ DllImport ( DllName , CallingConvention = NativeCallingConvention ) ]
401+ internal static extern void Vehicle_GetScriptDataBase64 ( IntPtr vehiclePointer , ref IntPtr text ) ;
402+
403+ [ DllImport ( DllName , CallingConvention = NativeCallingConvention ) ]
404+ internal static extern void Vehicle_LoadScriptDataFromBase64 ( IntPtr vehiclePointer , string base64 ) ;
381405 }
382406 }
383407}
0 commit comments