Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
291c1a3f
Commit
291c1a3f
authored
17 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
More 64-bit
parent
8b89ff53
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/sbbs3/cmdshell.h
+3
-3
3 additions, 3 deletions
src/sbbs3/cmdshell.h
src/sbbs3/sbbs.h
+2
-2
2 additions, 2 deletions
src/sbbs3/sbbs.h
with
5 additions
and
5 deletions
src/sbbs3/cmdshell.h
+
3
−
3
View file @
291c1a3f
...
...
@@ -653,7 +653,7 @@ typedef struct { /* Command shell image */
FILE
*
file
[
MAX_FOPENS
];
/* Each file ptr */
int
socket
[
MAX_SOCKETS
];
/* Open socket descriptors */
long
socket_error
;
/* Last socket error */
int32_t
socket_error
;
/* Last socket error */
uint
str_vars
,
/* Total number of string variables */
int_vars
,
/* Total number of integer variables */
...
...
@@ -663,11 +663,11 @@ typedef struct { /* Command shell image */
loops
,
/* Nested loop depth (loops on stack) */
cmdrets
;
/* Command returns on stack */
int32_t
ftp_mode
,
/* FTP operation mode */
*
int_var
;
/* Integer variables */
long
retval
,
/* Return value */
misc
,
/* Misc bits */
ftp_mode
,
/* FTP operation mode */
switch_val
,
/* Current switch value */
*
int_var
,
/* Integer variables */
*
str_var_name
,
/* String variable names (CRC-32) */
*
int_var_name
;
/* Integer variable names (CRC-32) */
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/sbbs.h
+
2
−
2
View file @
291c1a3f
...
...
@@ -371,11 +371,11 @@ public:
char
**
global_str_var
;
long
*
global_str_var_name
;
uint
global_int_vars
;
long
*
global_int_var
;
int32_t
*
global_int_var
;
long
*
global_int_var_name
;
char
*
sysvar_p
[
MAX_SYSVARS
];
uint
sysvar_pi
;
long
sysvar_l
[
MAX_SYSVARS
];
int32_t
sysvar_l
[
MAX_SYSVARS
];
uint
sysvar_li
;
/* ansi_term.cpp */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment