Changeset 130 for GPL/trunk/include


Ignore:
Timestamp:
Jun 12, 2007, 11:32:16 PM (18 years ago)
Author:
stevenhl
Message:

Make a bunch of warnings go away

Location:
GPL/trunk/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/include/dbgos2.h

    r32 r130  
    4242#define dprintf3(a)     if(DebugLevel > 2) DPE a
    4343#define DebugInt3()     ; //_asm int 3;
    44 #else
     44#else // #ifndef DEBUG
    4545#define dprintf(a)
    4646#define dprintf2(a)
    4747#define dprintf3(a)
    4848#define DebugInt3()     ;
    49 #endif
     49#endif // if DEBUG
    5050
    5151#endif //__COMMDBG_H__
  • GPL/trunk/include/linux/sched.h

    r128 r130  
    4444void schedule(void);
    4545
     46// 12 Jun 07 SHL Drop superfluous near
    4647extern int request_irq(unsigned int,
    47                        int (near *handler)(int, void *, struct pt_regs *),
     48                       int (*handler)(int, void *, struct pt_regs *),
    4849                       unsigned long, const char *, void *);
    4950extern void free_irq(unsigned int, void *);
  • GPL/trunk/include/ossidc32.h

    r127 r130  
    3232#endif
    3333
     34//16 bits pdd calls this during init. OSS_InitDriver calls init_module
     35int MyDevBlock(ULONG id, ULONG tout, char flag);
     36
    3437//32 bits IDC procedures
    35 //16 bits pdd calls this during init. OSS_InitDriver calls init_module
    36 extern int MyDevBlock(ULONG id, ULONG tout, char flag);
    3738OSSRET OSS32_Initialize();
    3839OSSRET OSS32_Shutdown();
     40
     41int OSS32_CloseUNI16(void);     // 12 Jun 07 SHL
     42
    3943OSSRET OSS32_QueryDevCaps(ULONG deviceid, POSS32_DEVCAPS pDevCaps);
    4044OSSRET OSS32_QueryNames(ULONG deviceid, char *pszDeviceName, ULONG cbDeviceName,
Note: See TracChangeset for help on using the changeset viewer.