| 1908 | |
| 1909 | |
| 1910 | void API_ROUTINE gds__prefix_msg(TEXT* string, const TEXT* root) |
| 1911 | { |
| 1912 | /******************************************************** |
| 1913 | * |
| 1914 | * g d s _ $ p r e f i x _ m s g |
| 1915 | * |
| 1916 | ******************************************************** |
| 1917 | * |
| 1918 | * Functional description |
| 1919 | * Find appropriate Firebird message file prefix. |
| 1920 | * Override conditional defines with the enviroment |
| 1921 | * variable FIREBIRD_MSG if it is set. |
| 1922 | * |
| 1923 | * |
| 1924 | **************************************/ |
| 1925 | string[0] = 0; |
| 1926 | |
| 1927 | GDS_init_prefix(); |
| 1928 | |
| 1929 | strcpy(string, fb_prefix_msg); // safe - no BO |
| 1930 | iscSafeConcatPath(string, root); |
| 1931 | } |
| 1932 | |
| 1933 | |
| 1934 | ISC_STATUS API_ROUTINE gds__print_status(const ISC_STATUS* vec) |
nothing calls this directly
no test coverage detected