smsuaddr.h - where is it?

Login to reply to this topic.
Mon, 2006-04-03 16:38
Joined: 2006-03-31
Forum posts: 23
I'm in need of this header file (more accurately, the following const-s: KSMSAddrFamily, KSockDatagram, KSMSDatagramProtocol) but it doesn't seem to exist on my disk.

How can this have happened (I have a fresh installation of SDK version 2 FP 3)? And more important - where can I find this file and where should I copy it exactly (and is copying it enough?)?

Thanks in advance!

Fri, 2006-06-09 19:39
Joined: 2005-05-19
Forum posts: 45
Re: smsuaddr.h - where is it?
Not completely sure, but I think the smsuaddr.h file is part of the symbian source (devkit) and is not distributed by Nokia in the S60 sdk.  You will also need a lib as well.  You may be able to find these in a UIQ sdk from Sony.

"If we knew what it was we were doing, it would not be called research, would it?" - Albert Einstein

Fri, 2006-06-09 21:01
Joined: 2005-11-20
Forum posts: 1246
Re: smsuaddr.h - where is it?
From the UIQ 2.1 SDK from SE:

Code:
const TUint KSMSAddrFamily = 0x010;
const TUint KSMSDatagramProtocol = 0x02;

An identifier 'KSockDatagram' is nowhere in sight, however.

The identical declarations are also in the SDK for Nokia's old communicators.

René Brunner

Fri, 2006-06-09 22:05
Joined: 2005-05-19
Forum posts: 45
Re: smsuaddr.h - where is it?
I found the following in the ES_SOCK.h file which is public in the S60 2.1 SKD.... hope this helps Smiley

const TUint KSockDatagram=2;

"If we knew what it was we were doing, it would not be called research, would it?" - Albert Einstein

  • Login to reply to this topic.