Removed all the // ... from C++ and translated to /* ... *

This commit is contained in:
dglaude
2002-03-04 17:44:10 +00:00
parent 08b224cc0a
commit 1fcea3bc5e
+6 -6
View File
@@ -49,9 +49,9 @@
#include "MtxOrb.h" #include "MtxOrb.h"
#include "report.h" #include "report.h"
//#include "shared/str.h" /* #include "shared/str.h"
//#include "input.h" #include "input.h"
/* Above 3 lines modified by Joris */ Above 3 lines modified by Joris */
#define INPUT_PAUSE_KEY 'A' #define INPUT_PAUSE_KEY 'A'
#define INPUT_BACK_KEY 'B' #define INPUT_BACK_KEY 'B'
#define INPUT_FORWARD_KEY 'C' #define INPUT_FORWARD_KEY 'C'
@@ -312,7 +312,7 @@ MtxOrb_init (Driver *drvthis, char *args)
char buf[256] = ""; char buf[256] = "";
int tmp, w, h; int tmp, w, h;
MtxOrb_type = MTXORB_LKD; // Assume it's an LCD w/keypad MtxOrb_type = MTXORB_LKD; /* Assume it's an LCD w/keypad */
debug( RPT_INFO, "MtxOrb: init(%p,%s)", drvthis, args ); debug( RPT_INFO, "MtxOrb: init(%p,%s)", drvthis, args );
@@ -1200,8 +1200,8 @@ MtxOrb_num (Driver *drvthis, int pos, int val)
/* Currently we are bignum but if bigalpha is there remove this line */ /* Currently we are bignum but if bigalpha is there remove this line */
c=val+'0'; /* We transform from 0-9 to 'O' to '9' */ c=val+'0'; /* We transform from 0-9 to 'O' to '9' */
if ((pos < -2) || (pos > 20)) return; // are we outisde the visible spectrum if ((pos < -2) || (pos > 20)) return; /* are we outisde the visible spectrum */
if (('c' < 32) || ('c' > 127)) return; // are we characteristic or not? if (('c' < 32) || ('c' > 127)) return; /* are we characteristic or not? */
c -= 32; c -= 32;