change driver _install calls from taking "void*" to "const void*"
This commit is contained in:
@@ -36,7 +36,7 @@ emd_sig: .byte $65, $6d, $64, EMD_API_VERSION ; "emd", version
|
||||
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
; unsigned char __fastcall__ em_install (void* driver);
|
||||
; unsigned char __fastcall__ em_install (const void* driver);
|
||||
; /* Install the driver once it is loaded */
|
||||
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ joy_sig: .byte $6A, $6F, $79, JOY_API_VERSION ; "joy", version
|
||||
|
||||
.code
|
||||
;----------------------------------------------------------------------------
|
||||
; unsigned char __fastcall__ joy_install (void* driver);
|
||||
; unsigned char __fastcall__ joy_install (const void* driver);
|
||||
; /* Install the driver once it is loaded */
|
||||
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ ser_sig: .byte $73, $65, $72, SER_API_VERSION ; "ser", version
|
||||
|
||||
.code
|
||||
;----------------------------------------------------------------------------
|
||||
; unsigned char __fastcall__ ser_install (void* driver);
|
||||
; unsigned char __fastcall__ ser_install (const void* driver);
|
||||
; /* Install the driver once it is loaded */
|
||||
|
||||
|
||||
|
||||
@@ -88,7 +88,7 @@ tgi_sig: .byte $74, $67, $69, TGI_API_VERSION ; "tgi", version
|
||||
|
||||
.code
|
||||
;----------------------------------------------------------------------------
|
||||
; void __fastcall__ tgi_install (void* driver);
|
||||
; void __fastcall__ tgi_install (const void* driver);
|
||||
; /* Install an already loaded driver. */
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user