I just bought the 32v2500 from the local Sony shop. It was €1000 inc. (I was offered the S at €880) The V definately looked better than the S when side by side in the shop. Yes you can plug an analog aerial straight into the tv set. It also has a digital decoder built into it so you can get any free to air digital channels that your country of residence is offering. No extra freeview box or whatnot needed :) Its an awesome tv and I think worth the little extra over other brands. Go for the V and try to get the price down to €1000 or €1050 region
A
A55imilate
@A55imilate
Posts
-
HDTVs and all that malarky -
writing a wrapper for c++ unmanged dllHi, I have an unmanged c++ dll and need to write a c# wrapper for it so I can add it to my c# application I have this in c++ extern "C" BOOL WINAPI GetDeviceID(DWORD dwDevice, DWORD* pdwID); and in my wrapper I have [DllImport("MDBEngine.dll")] unsafe public static extern bool GetDeviceID(uint dwDevice, uint* pdwID); my question is what is the * for in c++ and do I need it in my reference in c#?