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