| 1045 | #if defined(WIN32) |
| 1046 | |
| 1047 | PUBLIC int csoundOpenLibrary(void **library, const char *libraryPath) |
| 1048 | { |
| 1049 | *library = (void*) LoadLibrary(libraryPath); |
| 1050 | return (*library != NULL ? 0 : -1); |
| 1051 | } |
| 1052 | |
| 1053 | PUBLIC int csoundCloseLibrary(void *library) |
| 1054 | { |
no outgoing calls
no test coverage detected