📄 uiapi.h
字号:
//****************** Copyright 1999 Mobilink Telecom, Inc. *********************
//
// Description: Interface between Calibration Utility C++ and C functions.
//
// $RCSfile: UIapi.h $
// $Revision: 1.3 $
// $Date: 1999/06/08 22:19:43 $
// $Author: gdheinz $
//
//******************************** History *************************************
//
// $Log: UIapi.h $
// Revision 1.3 1999/06/08 22:19:43 gdheinz
// Added RCS info block.
// Revision 1.2 1999/06/08 22:00:24 gdheinz
//
// June 27, 2000
// Replaced chipset_type with PACCalType
//
//******************************************************************************
#pragma once
#include "caltypes.h"
#ifdef __cplusplus
#define EXTERN extern "C"
#else
#define EXTERN
#endif
// these functions are implemented in C++ and called from C
EXTERN void UI_AddGPIBLine ( char* text ) ;
EXTERN void UI_AddSIOLine ( char* text ) ;
EXTERN void UI_GetParameters ( long* params, long*nParams ) ;
EXTERN void UI_GetIMEI ( char* text ) ;
EXTERN void UI_GetVersion ( char* text ) ;
EXTERN void UI_GetChannel ( long* chan ) ;
EXTERN void UI_GetFileName ( char* fileName ) ;
EXTERN void UI_Sleep ( long milliseconds ) ;
EXTERN long UI_IsAbort ( void ) ;
EXTERN unsigned UI_Error ( char* text ) ;
EXTERN void UI_ErrorQuit ( char* str );
EXTERN void UI_Msg ( char* text ) ;
EXTERN void UI_GetOutputFilename ( char* text );
EXTERN void UI_GetParamTemplateFilename ( char* text );
EXTERN void UI_SetStatusBarText ( char* text );
EXTERN TesterType_t UI_GetTesterType ( void );
EXTERN PACCalType_t UI_GetPACCalType ( void );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -