Replace C++ style comment with C style comment
This commit is contained in:
parent
760d8ff918
commit
c61b756ea2
|
|
@ -11,6 +11,8 @@ Georgia Tech Research Corporation
|
||||||
Atlanta, Georgia 30332
|
Atlanta, Georgia 30332
|
||||||
All Rights Reserved
|
All Rights Reserved
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
|
||||||
PROJECT A-8503
|
PROJECT A-8503
|
||||||
|
|
||||||
AUTHORS
|
AUTHORS
|
||||||
|
|
@ -40,8 +42,8 @@ NON-STANDARD FEATURES
|
||||||
=========================================================================== */
|
=========================================================================== */
|
||||||
|
|
||||||
#include "cmtypes.h"
|
#include "cmtypes.h"
|
||||||
#include "cmconstants.h" // K.A. wrong name
|
#include "cmconstants.h" /* K.A. wrong name */
|
||||||
//#include "Cmconsta.h"
|
/*#include "Cmconsta.h" */
|
||||||
#include "cmproto.h"
|
#include "cmproto.h"
|
||||||
#include "mifcmdat.h"
|
#include "mifcmdat.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
/*
|
/*
|
||||||
DLL load interface
|
DLL load interface
|
||||||
(c)2000 Arpad Buermen
|
(c)2000 Arpad Buermen
|
||||||
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __DLLITF_H
|
#ifndef __DLLITF_H
|
||||||
|
|
@ -10,11 +11,11 @@
|
||||||
#include "cmproto.h"
|
#include "cmproto.h"
|
||||||
|
|
||||||
|
|
||||||
// This structure contains pointers to core SPICE OPUS functions used in CMs and UDNs.
|
/* This structure contains pointers to core SPICE OPUS functions used in CMs and UDNs.
|
||||||
// A pointer to this structure is passed to the dll when the dll is loaded.
|
A pointer to this structure is passed to the dll when the dll is loaded. */
|
||||||
|
|
||||||
struct coreInfo_t {
|
struct coreInfo_t {
|
||||||
// MIF stuff
|
/* MIF stuff */
|
||||||
void ((*dllitf_MIF_INP2A)(void *, INPtables *, card *));
|
void ((*dllitf_MIF_INP2A)(void *, INPtables *, card *));
|
||||||
char * ((*dllitf_MIFgetMod)(void *, char *, INPmodel **, INPtables *));
|
char * ((*dllitf_MIFgetMod)(void *, char *, INPmodel **, INPtables *));
|
||||||
IFvalue * ((*dllitf_MIFgetValue)(void *, char **, int, INPtables *, char **));
|
IFvalue * ((*dllitf_MIFgetValue)(void *, char **, int, INPtables *, char **));
|
||||||
|
|
@ -33,7 +34,7 @@ struct coreInfo_t {
|
||||||
char * ((*dllitf_MIFget_token)(char **, Mif_Token_Type_t *));
|
char * ((*dllitf_MIFget_token)(char **, Mif_Token_Type_t *));
|
||||||
Mif_Cntl_Src_Type_t ((*dllitf_MIFget_cntl_src_type)(Mif_Port_Type_t, Mif_Port_Type_t));
|
Mif_Cntl_Src_Type_t ((*dllitf_MIFget_cntl_src_type)(Mif_Port_Type_t, Mif_Port_Type_t));
|
||||||
char * ((*dllitf_MIFcopy)(char *));
|
char * ((*dllitf_MIFcopy)(char *));
|
||||||
// CM stuff
|
/* CM stuff */
|
||||||
void ((*dllitf_cm_climit_fcn)(double, double, double, double, double, double,
|
void ((*dllitf_cm_climit_fcn)(double, double, double, double, double, double,
|
||||||
double, double, int, double *, double *, double *,
|
double, double, int, double *, double *, double *,
|
||||||
double *));
|
double *));
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
/* I/O Redirection for Spice 3F4 under Win32s
|
/* I/O Redirection for Spice 3F4 under Win32s
|
||||||
Autor: Wolfgang Muees
|
Autor: Wolfgang Muees
|
||||||
Stand: 21.05.95
|
Stand: 21.05.95
|
||||||
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef WSTDIO_H
|
#ifndef WSTDIO_H
|
||||||
|
|
@ -63,7 +64,7 @@ int fp_u_t_char(int __c);
|
||||||
#define fputc fp_u_t_c
|
#define fputc fp_u_t_c
|
||||||
#define fputs fp_u_t_s
|
#define fputs fp_u_t_s
|
||||||
#define fread f_r_e_a_d
|
#define fread f_r_e_a_d
|
||||||
#define afreopen f_r_e_o_p_e_n // hvogt 10.05.2000
|
#define afreopen f_r_e_o_p_e_n /* hvogt 10.05.2000 */
|
||||||
#define fscanf fs_c_a_n_f
|
#define fscanf fs_c_a_n_f
|
||||||
#define fseek f_s_e_e_k
|
#define fseek f_s_e_e_k
|
||||||
#define fsetpos f_s_e_t_p_o_s
|
#define fsetpos f_s_e_t_p_o_s
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue