Skip to content

Instantly share code, notes, and snippets.

@asus4
Created April 3, 2014 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asus4/9951912 to your computer and use it in GitHub Desktop.
Save asus4/9951912 to your computer and use it in GitHub Desktop.
PD for iOS版にないオブジェクトの追加の仕方。 ref: http://qiita.com/asus4/items/c758aaa560c458d9bbb9
// ....
void d_soundfile_setup(void);
void d_ugen_setup(void);
// こんなかんじで
void your_extended_setup(void);
// ....
d_soundfile_setup();
d_ugen_setup();
// こんなかんじで
your_extended_setup();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment