| 945 | } |
| 946 | |
| 947 | void |
| 948 | create_directory(const char *path) |
| 949 | { |
| 950 | BOOL dres = CreateDirectoryA(path, NULL); |
| 951 | |
| 952 | if (!dres) { |
| 953 | DWORD dw = GetLastError(); |
| 954 | |
| 955 | if (dw != ERROR_ALREADY_EXISTS) |
| 956 | error("Unable to create directory '%s'", path); |
| 957 | } |
| 958 | } |
| 959 | |
| 960 | RESTORE_WARNING_UNREACHABLE_CODE |
| 961 |
no test coverage detected