PhilMurwin / growl-for-windows

Automatically exported from code.google.com/p/growl-for-windows
0 stars 0 forks source link

Integrating growl in c++ app #45

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Isn't there a guide on how to integrate growl into a c++ application?
I've compiled the gntp-send source from github and I've got 

bin/
    gntp-send.exe
    gntp-send++.exe
lib/
    growl.dll
    growl++.dll
    libgrowl.dll
    libgrowl.exp
    libgrowl++.dll
    libgrowl++.exp
obj/
    gntp-send.obj
    gntp-send++.obj
    growl.obj
    growl++.obj
    md5.obj
    tcp.obj

I don't know which files I have to import to my project in order to use the c++ 
functions such as:

Growl *grow = new Growl( protocol , password , appname , notifications , 
notifications_count );
growl→Notify( notification1 , title , message );
growl→Notify( notification2 , title , message );

Also there is no information about what protocol, password, notifications and 
notifications_count are.

Could you please help me?
Thank you!

Original issue reported on code.google.com by arkaitzf...@gmail.com on 15 Feb 2013 at 3:13