| 1887 | |
| 1888 | |
| 1889 | void API_ROUTINE gds__prefix_lock(TEXT* string, const TEXT* root) |
| 1890 | { |
| 1891 | /******************************************************** |
| 1892 | * |
| 1893 | * g d s _ $ p r e f i x _ l o c k |
| 1894 | * |
| 1895 | ******************************************************** |
| 1896 | * |
| 1897 | * Functional description |
| 1898 | * Find appropriate Firebird lock file prefix. |
| 1899 | * |
| 1900 | **************************************/ |
| 1901 | string[0] = 0; |
| 1902 | |
| 1903 | GDS_init_prefix(); |
| 1904 | |
| 1905 | strcpy(string, fb_prefix_lock); // safe - no BO |
| 1906 | iscSafeConcatPath(string, root); |
| 1907 | } |
| 1908 | |
| 1909 | |
| 1910 | void API_ROUTINE gds__prefix_msg(TEXT* string, const TEXT* root) |
nothing calls this directly
no test coverage detected