| 951 | /* Implemented in interop_BeOS.cpp */ |
| 952 | #elif defined CC_BUILD_OS2 |
| 953 | inline static void ShowErrorMessage(const char *url) { |
| 954 | static char errorMsg[] = "Could not open browser. Please go to: "; |
| 955 | cc_string message = String_Init(errorMsg, strlen(errorMsg), 500); |
| 956 | String_AppendConst(&message, url); |
| 957 | Logger_DialogWarn(&message); |
| 958 | } |
| 959 | |
| 960 | cc_result Process_StartOpen(const cc_string* args) { |
| 961 | char str[NATIVE_STR_LEN]; |
no test coverage detected