19 lines
290 B
C
19 lines
290 B
C
|
#ifndef __uac_sys_h
|
||
|
#define __uac_sys_h
|
||
|
|
||
|
|
||
|
#include "declare.h"
|
||
|
|
||
|
#define upcase(ch) ((in(ch,'a','z'))?(ch-32):(ch))
|
||
|
|
||
|
void memset16(USHORT * dest, SHORT val, INT len);
|
||
|
INT cancel(void);
|
||
|
INT wrask(CHAR * s);
|
||
|
#if !defined(__MINGW32__)
|
||
|
void beep(void);
|
||
|
#endif
|
||
|
void set_handler(void);
|
||
|
|
||
|
|
||
|
#endif
|