1 /* 2 * t_leak.cxx 3 */ 4 5 #include "sal/main.h" 6 #include "osl/process.h" 7 #include "osl/thread.h" 8 9 int main (int /*argc*/, char ** /*argv*/) 10 //SAL_IMPLEMENT_MAIN() 11 { 12 rtl_Locale * pLocale = 0; 13 osl_getProcessLocale (&pLocale); 14 #if 0 15 rtl_TextEncoding te = osl_getThreadTextEncoding(); 16 (void) te; 17 #endif 18 return 0; 19 } 20