Mercurial > audlegacy-plugins
comparison src/stdio/stdio.c @ 1146:183d03932c9e trunk
[svn] - curl, stdio: convert to plugin2 architecture
| author | nenolod |
|---|---|
| date | Mon, 28 May 2007 03:12:40 -0700 |
| parents | f1642ee1115c |
| children | ed2d7787779e |
comparison
equal
deleted
inserted
replaced
| 1145:40c1ffbe34d0 | 1146:183d03932c9e |
|---|---|
| 291 vfs_unregister_transport(&default_const); | 291 vfs_unregister_transport(&default_const); |
| 292 vfs_unregister_transport(&file_const); | 292 vfs_unregister_transport(&file_const); |
| 293 #endif | 293 #endif |
| 294 } | 294 } |
| 295 | 295 |
| 296 LowlevelPlugin llp_stdio = { | 296 DECLARE_PLUGIN(stdio, init, cleanup, NULL, NULL, NULL, NULL, NULL); |
| 297 NULL, | |
| 298 NULL, | |
| 299 "file:// URI Transport", | |
| 300 init, | |
| 301 cleanup, | |
| 302 }; | |
| 303 | |
| 304 LowlevelPlugin *get_lplugin_info(void) | |
| 305 { | |
| 306 return &llp_stdio; | |
| 307 } | |
| 308 |
