Re: GTK from assembly

2008-03-27 Thread Jason Ward
On Thu, Mar 27, 2008 at 1:58 PM, Gabriele Greco [EMAIL PROTECTED]
wrote:



 On 3/26/08, Jason Ward [EMAIL PROTECTED] wrote:
 
  It didn't work.
  was there something else I am supposed to do after I download this
  bundle. I
  do have the run-time installed since I installed Pidgin
 
 
 Note that there is at least one version of Pidgin that installs a private
 copy of GTK inside it's directory, so you cannot see it from your
 application, install the full GTK+ bundle:


 http://ftp.gnome.org/pub/gnome/binaries/win32/gtk+/2.12/gtk+-2.12.9-bundle.zip

 And place your executable in the path where DLLs are.

 If your assembler don't let you build executables maybe you should tell it
 where to find GTK dlls or def files, I cannot tell you how to do that since
 it's specific to your development enviroment, but you find all the
 developers files in the package in the link.

 --
 Bye,
  Gabry


Thanks this works perfectly
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list


windows GTK in assembly

2008-03-26 Thread Jason Ward
Hi.
I am trying to use GTK in windows with assembly language but I have a
problem.
When I make an API call I need to specify the dll name that the function
comes from.

so I have
dllname.gtk_init

but I can't find which dll this function name comes from.

Thanks in advance
Jason
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list


Re: windows GTK in assembly

2008-03-26 Thread Jason Ward
 Probably this declare the symbol gtk_init to be an external one.
 Something similar in sprit to
extern void gtk_init(void);
 in C.


This doesn't really help since the assembler I use doesn't use extern in
that manner.
It is a specific assembler which requires that you specify the dll name and
then the function name.
So what I need is the name of the dll in which gtk_init is located
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list


GTK from assembly

2008-03-26 Thread Jason Ward
It didn't work.
was there something else I am supposed to do after I download this bundle. I
do have the run-time installed since I installed Pidgin

Thanks guys
___
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list