Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.35 KB | None | 0 0
  1. ;/*++
  2. ;
  3. ;Copyright (c) 2012-2015 Intel Corporation All rights Reserved
  4. ;
  5. ;Module Name:
  6. ;
  7. ; ibtusb.inf
  8. ;
  9. ;Abstract:
  10. ; INF file for installing Intel(R) Wireless Bluetooth(R) driver.
  11. ; This file is dependant on bth.inf
  12. ;
  13. ;--*/
  14.  
  15. [Version]
  16. Signature = "$WINDOWS NT$"
  17. Class = Bluetooth
  18. ClassGuid = {e0cbf06c-cd8b-4647-bb8a-263b43f0f974}
  19. Provider = %PROVIDER_NAME%
  20. CatalogFile = ibtusb.cat
  21. DriverVer = 05/04/2018,20.60.0.4
  22.  
  23. [SourceDisksNames]
  24. 1=%SOURCEDISK1%,,,
  25.  
  26. [SourceDisksFiles]
  27. ibtusb.sys = 1
  28. ibtproppage.dll = 1
  29. ibtsiva.exe = 1
  30. ibtfw.dat = 1
  31.  
  32. [DestinationDirs]
  33. ibtusb.Copy = 12 ; drivers
  34. ibtproppage.Copy = 11 ; system32
  35. firmware.Copy = 12 ; drivers
  36. ibtsiva.Copy = 11 ; system32
  37. ibtsiva.Remove = 11 ; system32
  38.  
  39. ;
  40. ; Driver Information
  41. ;
  42. [Manufacturer]
  43. %COMPANY_NAME% = Device,NTamd64.6.3..
  44.  
  45. [Device.NTamd64.6.3..]
  46. ;---Start VID_PIDS section---
  47. %iBT_USB% = ibtusb, USB\VID_8087&PID_0A2B&REV_0001
  48. ;---End VID_PIDS section---
  49.  
  50. ; ============== This section covers device configuration for ibtusb ================
  51. [ibtusb]
  52. Include=bth.inf
  53. Needs=BthUsb.NT
  54. DelFiles=ibtsiva.Remove
  55. CopyFiles=ibtusb.Copy,ibtproppage.Copy,ibtsiva.Copy,firmware.Copy
  56. AddReg=ibtproppage.AddReg
  57.  
  58. [ibtusb.HW]
  59. Needs=BthUsb.NT.HW
  60. AddReg=ibtusb.HW.AddReg,VsMsft.HW.AddReg
  61.  
  62. [ibtusb.Services]
  63. Needs=BthUSB.NT.Services
  64. AddService=ibtusb,,ibtusb_Service_Inst,ibtusb_iBT_EventLog_Inst
  65. AddService=ibtsiva,0x00000800,ibtsiva_Service_Inst ; SPSVCSINST_STARTSERVICE
  66.  
  67. [ibtusb.HW.AddReg]
  68. HKR,,"LowerFilters",0x00010008,"ibtusb"
  69. HKR,,"RemoteWakeEnabled",0x00010001 ,0x1
  70. HKR,,"DeviceRemoteWakeSupported",0x00010001 ,0x1
  71.  
  72. [VsMsft.HW.AddReg]
  73. HKR,,VsMsftOpCode,0x00010001,0xFC1E
  74.  
  75. ;
  76. ; ======================= Common Sections =======================
  77. ;
  78. [firmware.Copy]
  79. ibtfw.dat
  80.  
  81. ; === Service install ====
  82. [ibtusb_Service_Inst]
  83. DisplayName = %ibtusb.SVCDESC_IBT%
  84. ServiceType = 1 ;SERVICE_KERNEL_DRIVER
  85. StartType = 3 ;SERVICE_DEMAND_START
  86. ErrorControl = 1 ;SERVICE_ERROR_NORMAL
  87. ServiceBinary = %12%\ibtusb.sys
  88. LoadOrderGroup = PNP Filter
  89. AddReg=Service.AddReg
  90.  
  91. [Service.AddReg]
  92. HKR,Parameters,WppRecorder_PerBufferMaxBytes,0x00010001,0x00010000
  93. HKR,Parameters,InstallOrUpgrade,0x00010001,0x00000001
  94.  
  95. [ibtusb.Copy]
  96. ibtusb.sys
  97.  
  98. ; ======================= Property Page Dll ========================
  99. [ibtproppage.Copy]
  100. ibtproppage.dll
  101.  
  102. [ibtproppage.AddReg]
  103. HKR,,EnumPropPages32,,"ibtproppage.dll,IBTPropPageEntryPoint"
  104.  
  105. ; ======================= ibtsiva ========================
  106. [ibtsiva_Service_Inst]
  107. DisplayName = %SERVICE_NAME%
  108. Description = %SERVICE_DESC%
  109. ServiceType = 0x00000010 ; SERVICE_WIN32_OWN_PROCESS
  110. StartType = 2 ; SERVICE_AUTO_START
  111. ErrorControl = 1 ; SERVICE_ERROR_NORMAL
  112. ServiceBinary = %11%\ibtsiva
  113.  
  114. [ibtsiva.Copy]
  115. ibtsiva.exe
  116.  
  117. [ibtsiva.Remove]
  118. ibtsiva.exe
  119. ;
  120. ; Event Log install section
  121. ;
  122. [ibtusb_iBT_EventLog_Inst]
  123. AddReg=ibtusb_iBT_EventLog_AddReg
  124.  
  125. [ibtusb_iBT_EventLog_AddReg]
  126. HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%\System32\IoLogMsg.dll;%%SystemRoot%%\System32\drivers\ibtusb.sys"
  127. HKR,,TypesSupported,0x00010001,7
  128.  
  129. ; === String Section ===
  130. [Strings]
  131. ; ================= Localized Strings section ====================
  132. ibtusb.SVCDESC_IBT = "Intel(R) Wireless Bluetooth(R)"
  133. iBT_USB = "Intel(R) Wireless Bluetooth(R)"
  134. SOURCEDISK1 = "Intel(R) Wireless Bluetooth(R) Install Disk"
  135. ; ================= Non-localizable Strings section ====================
  136. PROVIDER_NAME = "Intel Corporation"
  137. COMPANY_NAME = "Intel Corporation"
  138. INTEL = "Intel"
  139. BLUETOOTH = "Bluetooth"
  140. SERVICE_NAME = "Intel Bluetooth Service"
  141. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  142.  
  143. [Strings.0001] ; Arabic
  144. ; ================= Localized Strings section ====================
  145. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  146. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  147. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) قرص تثبيت"
  148. ; ================= Non-localizable Strings section ====================
  149. PROVIDER_NAME ="Intel Corporation"
  150. COMPANY_NAME ="Intel Corporation"
  151. INTEL = "Intel"
  152. BLUETOOTH = "Bluetooth"
  153. SERVICE_NAME = "Intel Bluetooth Service"
  154. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  155.  
  156. [Strings.0005] ; Czech
  157. ; ================= Localized Strings section ====================
  158. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  159. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  160. SOURCEDISK1 ="Instalační disk aplikace Intel(R) Wireless Bluetooth(R)"
  161. ; ================= Non-localizable Strings section ====================
  162. PROVIDER_NAME ="Intel Corporation"
  163. COMPANY_NAME ="Intel Corporation"
  164. INTEL = "Intel"
  165. BLUETOOTH = "Bluetooth"
  166. SERVICE_NAME = "Intel Bluetooth Service"
  167. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  168.  
  169. [Strings.0006] ; Danish
  170. ; ================= Localized Strings section ====================
  171. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  172. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  173. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R)-installationsdisk"
  174. ; ================= Non-localizable Strings section ====================
  175. PROVIDER_NAME ="Intel Corporation"
  176. COMPANY_NAME ="Intel Corporation"
  177. INTEL = "Intel"
  178. BLUETOOTH = "Bluetooth"
  179. SERVICE_NAME = "Intel Bluetooth Service"
  180. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  181.  
  182. [Strings.0007] ; German
  183. ; ================= Localized Strings section ====================
  184. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  185. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  186. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R)-Installationsdatenträger"
  187. ; ================= Non-localizable Strings section ====================
  188. PROVIDER_NAME ="Intel Corporation"
  189. COMPANY_NAME ="Intel Corporation"
  190. INTEL = "Intel"
  191. BLUETOOTH = "Bluetooth"
  192. SERVICE_NAME = "Intel Bluetooth Service"
  193. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  194.  
  195. [Strings.0008] ; Greek
  196. ; ================= Localized Strings section ====================
  197. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  198. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  199. SOURCEDISK1 ="Δίσκος εγκατάστασης Intel(R) Wireless Bluetooth(R)"
  200. ; ================= Non-localizable Strings section ====================
  201. PROVIDER_NAME ="Intel Corporation"
  202. COMPANY_NAME ="Intel Corporation"
  203. INTEL = "Intel"
  204. BLUETOOTH = "Bluetooth"
  205. SERVICE_NAME = "Intel Bluetooth Service"
  206. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  207.  
  208. [Strings.000A] ; Spanish
  209. ; ================= Localized Strings section ====================
  210. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  211. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  212. SOURCEDISK1 ="Disco de instalación Intel(R) Wireless Bluetooth(R)"
  213. ; ================= Non-localizable Strings section ====================
  214. PROVIDER_NAME ="Intel Corporation"
  215. COMPANY_NAME ="Intel Corporation"
  216. INTEL = "Intel"
  217. BLUETOOTH = "Bluetooth"
  218. SERVICE_NAME = "Intel Bluetooth Service"
  219. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  220.  
  221. [Strings.000B] ; Finnish
  222. ; ================= Localized Strings section ====================
  223. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  224. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  225. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R)-asennuslevy"
  226. ; ================= Non-localizable Strings section ====================
  227. PROVIDER_NAME ="Intel Corporation"
  228. COMPANY_NAME ="Intel Corporation"
  229. INTEL = "Intel"
  230. BLUETOOTH = "Bluetooth"
  231. SERVICE_NAME = "Intel Bluetooth Service"
  232. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  233.  
  234. [Strings.000C] ; French
  235. ; ================= Localized Strings section ====================
  236. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  237. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  238. SOURCEDISK1 ="Disque d'installation Intel(R) Wireless Bluetooth(R)"
  239. ; ================= Non-localizable Strings section ====================
  240. PROVIDER_NAME ="Intel Corporation"
  241. COMPANY_NAME ="Intel Corporation"
  242. INTEL = "Intel"
  243. BLUETOOTH = "Bluetooth"
  244. SERVICE_NAME = "Intel Bluetooth Service"
  245. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  246.  
  247. [Strings.000D] ; Hebrew
  248. ; ================= Localized Strings section ====================
  249. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  250. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  251. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) תקליטור להתקנת"
  252. ; ================= Non-localizable Strings section ====================
  253. PROVIDER_NAME ="Intel Corporation"
  254. COMPANY_NAME ="Intel Corporation"
  255. INTEL = "Intel"
  256. BLUETOOTH = "Bluetooth"
  257. SERVICE_NAME = "Intel Bluetooth Service"
  258. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  259.  
  260. [Strings.000E] ; Hungarian
  261. ; ================= Localized Strings section ====================
  262. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  263. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  264. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) telepítőlemez"
  265. ; ================= Non-localizable Strings section ====================
  266. PROVIDER_NAME ="Intel Corporation"
  267. COMPANY_NAME ="Intel Corporation"
  268. INTEL = "Intel"
  269. BLUETOOTH = "Bluetooth"
  270. SERVICE_NAME = "Intel Bluetooth Service"
  271. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  272.  
  273. [Strings.0010] ; Italian
  274. ; ================= Localized Strings section ====================
  275. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  276. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  277. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) disco di installazione"
  278. ; ================= Non-localizable Strings section ====================
  279. PROVIDER_NAME ="Intel Corporation"
  280. COMPANY_NAME ="Intel Corporation"
  281. INTEL = "Intel"
  282. BLUETOOTH = "Bluetooth"
  283. SERVICE_NAME = "Intel Bluetooth Service"
  284. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  285.  
  286. [Strings.0011] ; Japanese
  287. ; ================= Localized Strings section ====================
  288. ibtusb.SVCDESC_IBT ="インテル(R) ワイヤレス Bluetooth(R)"
  289. iBT_USB ="インテル(R) ワイヤレス Bluetooth(R)"
  290. SOURCEDISK1 ="インテル(R) ワイヤレス Bluetooth(R) インストール ディスク"
  291. ; ================= Non-localizable Strings section ====================
  292. PROVIDER_NAME ="Intel Corporation"
  293. COMPANY_NAME ="Intel Corporation"
  294. INTEL = "Intel"
  295. BLUETOOTH = "Bluetooth"
  296. SERVICE_NAME = "Intel Bluetooth Service"
  297. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  298.  
  299. [Strings.0012] ; Korean
  300. ; ================= Localized Strings section ====================
  301. ibtusb.SVCDESC_IBT ="인텔(R) 무선 Bluetooth(R)"
  302. iBT_USB ="인텔(R) 무선 Bluetooth(R)"
  303. SOURCEDISK1 ="인텔(R) 무선 Bluetooth(R) 설치 디스크"
  304. ; ================= Non-localizable Strings section ====================
  305. PROVIDER_NAME ="Intel Corporation"
  306. COMPANY_NAME ="Intel Corporation"
  307. INTEL = "Intel"
  308. BLUETOOTH = "Bluetooth"
  309. SERVICE_NAME = "Intel Bluetooth Service"
  310. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  311.  
  312. [Strings.0013] ; Dutch
  313. ; ================= Localized Strings section ====================
  314. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  315. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  316. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R)-installatieschijf"
  317. ; ================= Non-localizable Strings section ====================
  318. PROVIDER_NAME ="Intel Corporation"
  319. COMPANY_NAME ="Intel Corporation"
  320. INTEL = "Intel"
  321. BLUETOOTH = "Bluetooth"
  322. SERVICE_NAME = "Intel Bluetooth Service"
  323. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  324.  
  325. [Strings.0014] ; Norwegian (Bokmål)
  326. ; ================= Localized Strings section ====================
  327. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  328. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  329. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R)-installasjonsdisk"
  330. ; ================= Non-localizable Strings section ====================
  331. PROVIDER_NAME ="Intel Corporation"
  332. COMPANY_NAME ="Intel Corporation"
  333. INTEL = "Intel"
  334. BLUETOOTH = "Bluetooth"
  335. SERVICE_NAME = "Intel Bluetooth Service"
  336. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  337.  
  338. [Strings.0015] ; Polish
  339. ; ================= Localized Strings section ====================
  340. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  341. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  342. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) dysk instalacyjny"
  343. ; ================= Non-localizable Strings section ====================
  344. PROVIDER_NAME ="Intel Corporation"
  345. COMPANY_NAME ="Intel Corporation"
  346. INTEL = "Intel"
  347. BLUETOOTH = "Bluetooth"
  348. SERVICE_NAME = "Intel Bluetooth Service"
  349. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  350.  
  351. [Strings.0416] ; Portuguese (Brazil)
  352. ; ================= Localized Strings section ====================
  353. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  354. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  355. SOURCEDISK1 ="Disco de instalação do Intel(R) Wireless Bluetooth(R)"
  356. ; ================= Non-localizable Strings section ====================
  357. PROVIDER_NAME ="Intel Corporation"
  358. COMPANY_NAME ="Intel Corporation"
  359. INTEL = "Intel"
  360. BLUETOOTH = "Bluetooth"
  361. SERVICE_NAME = "Intel Bluetooth Service"
  362. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  363.  
  364. [Strings.0816] ; Portuguese (Portugal)
  365. ; ================= Localized Strings section ====================
  366. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  367. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  368. SOURCEDISK1 ="Disco de instalação do Intel(R) Wireless Bluetooth(R)"
  369. ; ================= Non-localizable Strings section ====================
  370. PROVIDER_NAME ="Intel Corporation"
  371. COMPANY_NAME ="Intel Corporation"
  372. INTEL = "Intel"
  373. BLUETOOTH = "Bluetooth"
  374. SERVICE_NAME = "Intel Bluetooth Service"
  375. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  376.  
  377. [Strings.0019] ; Russian
  378. ; ================= Localized Strings section ====================
  379. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  380. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  381. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) установочный диск"
  382. ; ================= Non-localizable Strings section ====================
  383. PROVIDER_NAME ="Intel Corporation"
  384. COMPANY_NAME ="Intel Corporation"
  385. INTEL = "Intel"
  386. BLUETOOTH = "Bluetooth"
  387. SERVICE_NAME = "Intel Bluetooth Service"
  388. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  389.  
  390. [Strings.001D] ; Swedish
  391. ; ================= Localized Strings section ====================
  392. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  393. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  394. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R)-installationsskiva"
  395. ; ================= Non-localizable Strings section ====================
  396. PROVIDER_NAME ="Intel Corporation"
  397. COMPANY_NAME ="Intel Corporation"
  398. INTEL = "Intel"
  399. BLUETOOTH = "Bluetooth"
  400. SERVICE_NAME = "Intel Bluetooth Service"
  401. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  402.  
  403. [Strings.001E] ; Thai
  404. ; ================= Localized Strings section ====================
  405. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  406. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  407. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) ดิสก์ติดตั้ง"
  408. ; ================= Non-localizable Strings section ====================
  409. PROVIDER_NAME ="Intel Corporation"
  410. COMPANY_NAME ="Intel Corporation"
  411. INTEL = "Intel"
  412. BLUETOOTH = "Bluetooth"
  413. SERVICE_NAME = "Intel Bluetooth Service"
  414. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  415.  
  416. [Strings.001F] ; Turkish
  417. ; ================= Localized Strings section ====================
  418. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  419. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  420. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) Yükleme Diski"
  421. ; ================= Non-localizable Strings section ====================
  422. PROVIDER_NAME ="Intel Corporation"
  423. COMPANY_NAME ="Intel Corporation"
  424. INTEL = "Intel"
  425. BLUETOOTH = "Bluetooth"
  426. SERVICE_NAME = "Intel Bluetooth Service"
  427. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  428.  
  429. [Strings.0804] ; Chinese (Simplified)
  430. ; ================= Localized Strings section ====================
  431. ibtusb.SVCDESC_IBT ="英特尔(R) 无线 Bluetooth(R)"
  432. iBT_USB ="英特尔(R) 无线 Bluetooth(R)"
  433. SOURCEDISK1 ="英特尔(R) 无线 Bluetooth(R) 安装磁盘"
  434. ; ================= Non-localizable Strings section ====================
  435. PROVIDER_NAME ="Intel Corporation"
  436. COMPANY_NAME ="Intel Corporation"
  437. INTEL = "Intel"
  438. BLUETOOTH = "Bluetooth"
  439. SERVICE_NAME = "Intel Bluetooth Service"
  440. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  441.  
  442. [Strings.0C04] ; Chinese (Hong Kong)
  443. ; ================= Localized Strings section ====================
  444. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  445. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  446. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) 安裝磁片"
  447. ; ================= Non-localizable Strings section ====================
  448. PROVIDER_NAME ="Intel Corporation"
  449. COMPANY_NAME ="Intel Corporation"
  450. INTEL = "Intel"
  451. BLUETOOTH = "Bluetooth"
  452. SERVICE_NAME = "Intel Bluetooth Service"
  453. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
  454.  
  455. [Strings.0404] ; Chinese (Traditional)
  456. ; ================= Localized Strings section ====================
  457. ibtusb.SVCDESC_IBT ="Intel(R) Wireless Bluetooth(R)"
  458. iBT_USB ="Intel(R) Wireless Bluetooth(R)"
  459. SOURCEDISK1 ="Intel(R) Wireless Bluetooth(R) 安裝磁片"
  460. ; ================= Non-localizable Strings section ====================
  461. PROVIDER_NAME ="Intel Corporation"
  462. COMPANY_NAME ="Intel Corporation"
  463. INTEL = "Intel"
  464. BLUETOOTH = "Bluetooth"
  465. SERVICE_NAME = "Intel Bluetooth Service"
  466. SERVICE_DESC = "Intel(R) Wireless Bluetooth(R) iBtSiva Service"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement