#眉標=Mobile、ActiveSync、Windows CE #副標=Windows Mobile開發系列(16) #大標=行動裝置資料同步化 #作者=文/圖 沈炳宏 ====================== 程式1 [DllImport("rapi.DLL", CharSet=CharSet.Unicode)] public static extern int CeRapiInit(); public static extern int CeRapiUninit(); public static extern int CeCreateProcess (…); public static extern int CeCloseHandle(IntPtr Handle); static void Main(string[] args) { int hr = CeRapiInit(); if (hr==0) { string strProg = @"\windows\notepad.exe"; ProcessInfo pi = new ProcessInfo(); CeCreateProcess(…); CeCloseHandle(pi.hProcess); CeCloseHandle(pi.hThread); } CeRapiUninit(); return; } ======================================