Skip to content

Commit

Permalink
updated for msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
pierreguillot committed May 23, 2018
1 parent bf7dc1f commit 61f43ec
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ build
*tar.gz
*sha256
*app
*exp
deken
2 changes: 1 addition & 1 deletion pd.build
Submodule pd.build updated 3 files
+10 −5 pd.cmake
+1,393 −1,378 x64/pd.def
+ x64/pd.lib
4 changes: 2 additions & 2 deletions src/connected_tilde.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static void connected_tilde_dsp(t_connected *x, t_signal **sp)
{
SETFLOAT(av+i, 0);
}

linetraverser_start(&t, x->c_cnv);
while((oc = linetraverser_next(&t)))
{
Expand All @@ -63,7 +63,7 @@ static void connected_tilde_dsp(t_connected *x, t_signal **sp)
}
}

EXTERN void connected_tilde_setup(void)
void connected_tilde_setup(void)
{
t_class* c = class_new(gensym("connected~"), (t_newmethod)connected_tilde_new, (t_method)NULL, sizeof(t_connected), CLASS_NOINLET, A_FLOAT, 0);
if(c)
Expand Down
2 changes: 1 addition & 1 deletion src/crash.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ static void crash_bang(t_object *x)
sys_ouch();
}

EXTERN void crash_setup(void)
void crash_setup(void)
{
crash_class = class_new(gensym("crash"), (t_newmethod)crash_new, (t_method)NULL, sizeof(t_object), CLASS_DEFAULT, 0);
class_addbang(crash_class, (t_method)crash_bang);
Expand Down
2 changes: 1 addition & 1 deletion src/leeloo_tilde.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void leeloo_dsp(t_leeloo *x, t_signal **sp)

}

EXTERN void leeloo_tilde_setup(void)
void leeloo_tilde_setup(void)
{
t_class* c = class_new(gensym("leeloo~"), (t_newmethod)leeloo_new, NULL, sizeof(t_leeloo), CLASS_DEFAULT, A_DEFFLOAT, 0);
if(c)
Expand Down
2 changes: 1 addition & 1 deletion src/maxicatch_tilde.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static void maxicatch_tilde_dsp(t_maxicatch *x, t_signal **sp)
dsp_add(maxicatch_perform, 3, (t_int)x, (t_int)sp[0]->s_vec, (t_int)sp[0]->s_n);
}

EXTERN void maxicatch_tilde_setup(void)
void maxicatch_tilde_setup(void)
{
t_class* c = class_new(gensym("maxicatch~"), (t_newmethod)maxicatch_tilde_new, (t_method)NULL, sizeof(t_maxicatch), CLASS_DEFAULT, 0);
if(c)
Expand Down
2 changes: 1 addition & 1 deletion src/meanblock_tilde.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ void *meanblock_tilde_new(t_floatarg f)
return x;
}

EXTERN void meanblock_tilde_setup(void)
void meanblock_tilde_setup(void)
{
t_class *c = class_new(gensym("meanblock~"), (t_newmethod)meanblock_tilde_new, (t_method)meanblock_tilde_free,
sizeof(t_meanblock_tilde), CLASS_DEFAULT, A_DEFFLOAT, 0);
Expand Down
2 changes: 1 addition & 1 deletion src/pak.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ static void pak_inlet_set(t_pak_inlet *x, t_symbol* s, int argc, t_atom* argv)



EXTERN void pak_setup(void)
void pak_setup(void)
{
t_class* c = NULL;

Expand Down
2 changes: 1 addition & 1 deletion src/tabosco_tilde.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static void tabosco_tilde_dsp(t_tabosco *x, t_signal **sp)
dsp_add(tabosco_perform, 5, (t_int)x, (t_int)sp[0]->s_vec, (t_int)sp[1]->s_vec, (t_int)sp[0]->s_n, (t_int)sp[0]->s_sr);
}

EXTERN void tabosco_tilde_setup(void)
void tabosco_tilde_setup(void)
{
t_class* c = class_new(gensym("tabosco~"), (t_newmethod)tabosco_tilde_new, (t_method)NULL, sizeof(t_tabosco), CLASS_DEFAULT, A_SYMBOL, 0);
if(c)
Expand Down

0 comments on commit 61f43ec

Please sign in to comment.