Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Aayush
purr-data
Commits
a0d0374d
Commit
a0d0374d
authored
Aug 02, 2014
by
Mathieu L Bouchard
Browse files
remove unused vars & add comments about Qt cmdline opts
parent
c08ec307
Changes
2
Hide whitespace changes
Inline
Side-by-side
pd/src/s_inter.c
View file @
a0d0374d
...
...
@@ -505,7 +505,6 @@ void socketreceiver_read(t_socketreceiver *x, int fd)
socketreceiver_getudp
(
x
,
fd
);
else
/* TCP ("streaming") socket protocol */
{
char
*
semi
;
int
readto
=
(
x
->
sr_inhead
>=
x
->
sr_intail
?
INBUFSIZE
:
x
->
sr_intail
-
1
);
int
ret
;
...
...
@@ -663,7 +662,7 @@ void blargh(void) {
void
sys_vgui
(
char
*
fmt
,
...)
{
int
msglen
,
bytesleft
,
headwas
,
nwrote
;
int
msglen
;
va_list
ap
;
if
(
sys_nogui
)
...
...
pd/src/s_main.c
View file @
a0d0374d
...
...
@@ -13,6 +13,8 @@
#include <fcntl.h>
#include <stdlib.h>
#define UNISTD
#ifdef UNISTD
#include <unistd.h>
#endif
...
...
@@ -444,6 +446,15 @@ static char *(usagemessage[]) = {
"
\n
"
,
};
#ifdef QTGUI
// -nogui applies only to Tk until further notice.
// -qtcanvas should open a Qt window for every pd canvas (two toolkits at once)
// more options could go here, to enable a Qt main window, menus, dialogues.
// those are transitory options, until Tk is removed, at which point
// -nogui will apply to Qt, -guiport and -guiport will be removed, and
// all transitory options will be removed.
#endif
static
void
sys_parsedevlist
(
int
*
np
,
int
*
vecp
,
int
max
,
char
*
str
)
{
int
n
=
0
;
...
...
@@ -481,8 +492,8 @@ static int sys_getmultidevchannels(int n, int *devlist)
INSTALL_PREFIX. In MSW, we don't try to use INSTALL_PREFIX. */
void
sys_findprogdir
(
char
*
progname
)
{
char
sbuf
[
FILENAME_MAX
],
sbuf2
[
FILENAME_MAX
]
,
*
sp
;
char
*
lastslash
;
char
sbuf
[
FILENAME_MAX
],
sbuf2
[
FILENAME_MAX
];
//
char *lastslash;
#ifdef UNISTD
struct
stat
statbuf
;
#endif
...
...
@@ -577,8 +588,6 @@ static int sys_mmio = 0;
int
sys_argparse
(
int
argc
,
char
**
argv
)
{
char
sbuf
[
MAXPDSTRING
];
int
i
;
while
((
argc
>
0
)
&&
**
argv
==
'-'
)
{
if
(
!
strcmp
(
*
argv
,
"-r"
)
&&
argc
>
1
&&
...
...
@@ -1081,7 +1090,7 @@ static void sys_afterargparse(void)
sys_open_midi
(
nmidiindev
,
midiindev
,
nmidioutdev
,
midioutdev
,
0
);
}
static
void
sys_addreferencepath
(
void
)
{
char
sbuf
[
MAXPDSTRING
];
}
//
static void sys_addreferencepath(void)
//
{
//
char sbuf[MAXPDSTRING];
//
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment