Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-29 Thread ChunEon Park
quot;<onef...@gmail.com> To: enlightenment-devel@lists.sourceforge.net Cc: Sent: 12-01-30(월) 10:04:41 Subject: Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib On Mon, 30 Jan 2012 10:00:27 +0900 ChunEon Park<her...@naver.com> wrote: > When I use vs 2005/2008, I

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-29 Thread David Seikel
On Mon, 30 Jan 2012 10:00:27 +0900 ChunEon Park wrote: > When I use vs 2005/2008, I used to use the type INT, LONG, BOOL... > which are macros to translate 32/64 bits if it's necessary. If your BOOLs are 64 bits long, you're doing it wrong. Then again, this is Windows we are talking about. --

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-29 Thread ChunEon Park
t Barbieri"<barbi...@profusion.mobi> To: "Enlightenment developer list"<enlightenment-devel@lists.sourceforge.net> Cc: Sent: 12-01-27(금) 18:03:40 Subject: Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib On Friday, January 27, 2012, Vincent Torri &

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-27 Thread The Rasterman
On Fri, 27 Jan 2012 07:28:52 +0100 Vincent Torri said: > On Fri, Jan 27, 2012 at 1:39 AM, David Seikel wrote: > > On Thu, 26 Jan 2012 20:37:42 -0200 Gustavo Sverzut Barbieri > > wrote: > > > >> On Thu, Jan 26, 2012 at 8:16 PM, Boris Faure > >> wrote: > >> > On Thu, Jan 26, 2012 at 13:11, Gusta

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-27 Thread Tom Hacohen
On 27/01/12 11:25, Vincent Torri wrote: > specific microsotf types : > > http://msdn.microsoft.com/en-us/library/aa383751%28VS.85%29.aspx > > or uintptr_t : > > http://msdn.microsoft.com/en-us/library/323b6b3k%28VS.80%29.aspx Who would have thought, it seems the correct way of doing it is the c

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-27 Thread Vincent Torri
On Fri, Jan 27, 2012 at 10:03 AM, Gustavo Sverzut Barbieri wrote: > On Friday, January 27, 2012, Vincent Torri wrote: >> On Fri, Jan 27, 2012 at 9:10 AM, Tom Hacohen wrote: >>> On 27/01/12 08:12, ChunEon Park wrote: I changed to use ssize_t type for now, Since I'm not sure that long ty

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-27 Thread Gustavo Sverzut Barbieri
On Friday, January 27, 2012, ChunEon Park wrote: > Thank you for explaining. > So I leave the log messages for picking up any problems from there by someone like you. > But It would be better if there were any comments to explain it why he/she wrote those unusual code. > Anyway, once I will revert

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-27 Thread Gustavo Sverzut Barbieri
On Friday, January 27, 2012, Vincent Torri wrote: > On Fri, Jan 27, 2012 at 9:10 AM, Tom Hacohen wrote: >> On 27/01/12 08:12, ChunEon Park wrote: >>> I changed to use ssize_t type for now, >>> Since I'm not sure that long type will be expanded to 64bit. >> >> size_t is also not sure to be 64bit..

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-27 Thread Vincent Torri
On Fri, Jan 27, 2012 at 9:10 AM, Tom Hacohen wrote: > On 27/01/12 08:12, ChunEon Park wrote: >> I changed to use ssize_t type for now, >> Since I'm not sure that long type will be expanded to 64bit. > > size_t is also not sure to be 64bit... It's likely, but not sure. > > The only correct way of d

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-27 Thread Tom Hacohen
On 27/01/12 08:12, ChunEon Park wrote: > I changed to use ssize_t type for now, > Since I'm not sure that long type will be expanded to 64bit. size_t is also not sure to be 64bit... It's likely, but not sure. The only correct way of doing it is intptr_t. You can alternatively keep the long (whic

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread Vincent Torri
On Fri, Jan 27, 2012 at 1:39 AM, David Seikel wrote: > On Thu, 26 Jan 2012 20:37:42 -0200 Gustavo Sverzut Barbieri > wrote: > >> On Thu, Jan 26, 2012 at 8:16 PM, Boris Faure >> wrote: >> > On Thu, Jan 26, 2012 at 13:11, Gustavo Sverzut Barbieri >> > wrote: >> >> Dunno, raster is not too found o

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread ChunEon Park
nt-devel@lists.sourceforge.net> Cc: enlightenment-...@lists.sourceforge.net Sent: 12-01-27(금) 11:52:52 Subject: Re: [E-devel]E SVN: hermet IN trunk/elementary/src: bin examples lib Thank you for explaining. So I leave the log messages for picking up any problems from there by someone like you.

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread ChunEon Park
nt-devel@lists.sourceforge.net> Cc: "enlightenment-...@lists.sourceforge.net"<enlightenment-...@lists.sourceforge.net> Sent: 12-01-26(목) 20:10:06 Subject: Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib It is needed for 64 bits where sizeof(void*) > sizeof(int) Don&#

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread David Seikel
On Thu, 26 Jan 2012 20:37:42 -0200 Gustavo Sverzut Barbieri wrote: > On Thu, Jan 26, 2012 at 8:16 PM, Boris Faure > wrote: > > On Thu, Jan 26, 2012 at 13:11, Gustavo Sverzut Barbieri > > wrote: > >> Dunno, raster is not too found of the _t variants, that's why we > >> have almost no uint8_t et

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread Gustavo Sverzut Barbieri
On Thu, Jan 26, 2012 at 8:16 PM, Boris Faure wrote: > On Thu, Jan 26, 2012 at 13:11, Gustavo Sverzut Barbieri > wrote: >> Dunno, raster is not too found of the _t variants, that's why we have >> almost no uint8_t et al > > I don't want to troll on that but I'd like to know why raster doesn't > wa

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread Boris Faure
On Thu, Jan 26, 2012 at 13:11, Gustavo Sverzut Barbieri wrote: > Dunno, raster is not too found of the _t variants, that's why we have > almost no uint8_t et al I don't want to troll on that but I'd like to know why raster doesn't want the use the types in stdint.h specified in C99? I would also

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread Tom Hacohen
But this case is just ridiculous. :) -- Tom. On 26/01/12 14:11, Gustavo Sverzut Barbieri wrote: > Dunno, raster is not too found of the _t variants, that's why we have > almost no uint8_t et al > > On Thursday, January 26, 2012, Tom Hacohen > > wrote: > >

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread Gustavo Sverzut Barbieri
Dunno, raster is not too found of the _t variants, that's why we have almost no uint8_t et al On Thursday, January 26, 2012, Tom Hacohen wrote: > On 26/01/12 13:10, Gustavo Sverzut Barbieri wrote: >> >> It is needed for 64 bits where sizeof(void*)> sizeof(int) >> >> Don't do these changes withou

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread Tom Hacohen
On 26/01/12 13:10, Gustavo Sverzut Barbieri wrote: > It is needed for 64 bits where sizeof(void*)> sizeof(int) > > Don't do these changes without asking anymore :-/ > > On Thursday, January 26, 2012, Enlightenment SVN > wrote: >> Log: >> elementary/genlist - deprecated elm_genlist_item_data_set/ge

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2012-01-26 Thread Gustavo Sverzut Barbieri
It is needed for 64 bits where sizeof(void*) > sizeof(int) Don't do these changes without asking anymore :-/ On Thursday, January 26, 2012, Enlightenment SVN wrote: > Log: > elementary/genlist - deprecated elm_genlist_item_data_set/get > > but please use elm_object_item_data_set/get instead. >

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2011-12-08 Thread Daniel Juyung Seo
Very good! Please update ElementaryChanges. http://trac.enlightenment.org/e/wiki/ElementaryChanges Daniel Juyung Seo (SeoZ) 2011/12/8 ChunEon Park : > elementary/slideshow - Elm_Slideshow_Item -> Elm_Object_Item > > WARNING. This may cause build breaks. > >

Re: [E-devel] E SVN: hermet IN trunk/elementary/src: bin examples lib

2011-12-08 Thread ChunEon Park
elementary/slideshow - Elm_Slideshow_Item -> Elm_Object_Item WARNING. This may cause build breaks. -Regards, Hermet- -Original Message- From: "Enlightenment SVN" To: enlightenment-...@lists.sourceforge.net Cc: Sent: 11