Getting started with the SDK |
Getting started with the SDK |
DJMatty |
Aug 14 2006, 08:08 AM
Post
#1
|
Member Group: Members Posts: 11 Joined: 14-August 06 Member No.: 124 |
Hi
I've just started to play with the AMIP SDK and I'm having problems getting it to do anything. I have AMIP running in winamp, its changing my Messenger np message, and also creating a file, so it's running ok. I can also telnet to port 60333 on my pc and that gets connected, but doesn't do much else when I type stuff. However when I use the SDK the ac_init_client returns 1, but the ac_eval returns 3 (CONNECTIONFAILED). Here is the code i am using, this was built using VS2005, it's simple console app. CODE #include "stdafx.h" #include <windows.h> #include <stdio.h> #include <conio.h> #include "ac.h" #pragma comment(lib, "ac.lib") int _tmain(int argc, _TCHAR* argv[]) { int err = ac_init_client("127.0.0.1", 60333, 1000, 5, 1); if(err == 1) { char np[2048]; err = ac_eval("var_name",np); if(err == AC_ERR_NOERROR) { printf("Now playing %s\n", np); } else { printf("Error: %d\n", err); } } ac_uninit(); _getch(); return 0; } Can anyone see anything obviously wrong? Do I need a specific version of AMIP to work with the SDK? (I'm using 2.53 beta at present) I've also downloaded the java sdk and tried the example bat file, that also throws a ConnectionFailedException so I'm guessing it's not to do with my code but how I've got AMIP set up or how the SDK is set up... can anyone point me in the right direction? Thanks Matt |