From 1af7505a00cb93ef7de6b144bd74fe94173d43de Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Mon, 19 Nov 2018 21:56:24 -0600 Subject: [PATCH] Add prototypes for SANE housekeeping calls in . There still aren't prototypes for the main SANE calls, since they aren't really designed to be called directly from C, and may take variable numbers of parameters depending on the operation. --- ORCACDefs/sane.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ORCACDefs/sane.h b/ORCACDefs/sane.h index 4eab6b1..0e1f40b 100644 --- a/ORCACDefs/sane.h +++ b/ORCACDefs/sane.h @@ -260,12 +260,12 @@ Extended inf (void) ; Extended pi (void) ; /* returns pi */ -extern pascal void SANEBootInit() inline(0x010A,dispatcher); -extern pascal void SANEStartUp() inline(0x020A,dispatcher); -extern pascal void SANEShutDown() inline(0x030A,dispatcher); -extern pascal Word SANEVersion() inline(0x040A,dispatcher); -extern pascal void SANEReset() inline(0x050A,dispatcher); -extern pascal Word SANEStatus() inline(0x060A,dispatcher); +extern pascal void SANEBootInit(void) inline(0x010A,dispatcher); +extern pascal void SANEStartUp(Word) inline(0x020A,dispatcher); +extern pascal void SANEShutDown(void) inline(0x030A,dispatcher); +extern pascal Word SANEVersion(void) inline(0x040A,dispatcher); +extern pascal void SANEReset(void) inline(0x050A,dispatcher); +extern pascal Word SANEStatus(void) inline(0x060A,dispatcher); extern pascal void SANEFP816() inline(0x090A,dispatcher); extern pascal void SANEDecStr816() inline(0x0A0A,dispatcher); extern pascal void SANEElems816() inline(0x0B0A,dispatcher);