Page 1 of 1

dos funciones utiles

Posted: Mon Jul 05, 2010 7:14 am
by mastintin
Te pongo aqui 2 funciones que estoy usando . Ya las puse en un post anterior pero mezcladas con mas cosas y por ello igual quedaron despistadas .Una de ellas es una mejor version de apppath() y la otra sería el equivalente a la funcion path() "de toda la vida"
Saludos.

Code: Select all

 HB_FUNC( APPPATH )
{
   NSString *buPath = [[NSBundle mainBundle] bundlePath];
   hb_retc( [ buPath cStringUsingEncoding : NSASCIIStringEncoding ] );
}

  HB_FUNC( PATH )
{
   NSString *buPath = [[NSBundle mainBundle] bundlePath];
   NSString *secondParentPath = [buPath stringByDeletingLastPathComponent] ;
  hb_retc( [ secondParentPath cStringUsingEncoding : NSASCIIStringEncoding ] );
} 
 

Re: dos funciones utiles

Posted: Mon Jul 05, 2010 7:47 am
by Antonio Linares
Manuel,

Incluidas para el próximo build que publiquemos :-)

Muchas gracias! :-)