| 34 | #ifdef _MSC_VER |
| 35 | #include <windows.h> |
| 36 | std::string PrintCurrentDirectory() |
| 37 | { |
| 38 | char buffer[MAX_PATH] = {0}; |
| 39 | GetCurrentDirectory(MAX_PATH, buffer); |
| 40 | return std::string(buffer); |
| 41 | } |
| 42 | #endif |
| 43 | |
| 44 | struct labsound_example |
nothing calls this directly
no outgoing calls
no test coverage detected