csmess.h

来自「CSLIB, a C++ database library.」· C头文件 代码 · 共 47 行

H
47
字号
/***********************************************************************

                       CSA Library, Free Evaluation Version 2.2.0 
                                           Release: June 9th 1997 

       Set of functions to process messages.
       All the library functions use only these functions
       to display warnings, errors etc..

                                           Copyright(c) 1994-1997 
                                                          ComBits 
                                                  The Netherlands 
***********************************************************************/

#ifndef __CSMESS_H
#define __CSMESS_H

#include "csstr.h"


#define MaxMessageLength  300


csCHAR *csmess_read(long error);
void    csmess_set_fun( void (* fun)(csCHAR *));

void    csmess_reset_fun( void );
void    csmess_set_filename( csCHAR *s);
void    csmess_reset_filename( void);
void    csmess_on(void);
void    csmess_off(void);
int     csmess_onoff(void);
void    csmess_onoff(int TrueOrFalse);


csCHAR *csmess_p( csCHAR *p);
csCHAR *csmess_p( csCHAR *p, csCHAR *q);
csCHAR *csmess_p( long error,csCHAR *s1, csCHAR *s2, csCHAR *s3=NULL);
csCHAR *csmess_p( long error,csCHAR *s,  long l=0);
csCHAR *csmess_p( long error,long l);
csCHAR *csmess_p( long error,int i);
csCHAR *csmess_p( long error,csCHAR c);
csCHAR *csmess_p( long error,csSTR &s);
csCHAR *csmess_p( long error);

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?