MRU.CPP 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. /*
  2. ===========================================================================
  3. Copyright (C) 1999-2005 Id Software, Inc.
  4. This file is part of Quake III Arena source code.
  5. Quake III Arena source code is free software; you can redistribute it
  6. and/or modify it under the terms of the GNU General Public License as
  7. published by the Free Software Foundation; either version 2 of the License,
  8. or (at your option) any later version.
  9. Quake III Arena source code is distributed in the hope that it will be
  10. useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with Foobar; if not, write to the Free Software
  15. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  16. ===========================================================================
  17. */
  18. //*************************************************************
  19. // File name: mru.c
  20. //
  21. // Description:
  22. //
  23. // Routines for MRU support
  24. //
  25. // Development Team:
  26. //
  27. // Gilles Vollant (100144.2636@compuserve.com)
  28. //
  29. //*************************************************************
  30. #include "stdafx.h"
  31. #include <windows.h>
  32. #include <windowsx.h>
  33. #include <string.h>
  34. #include "mru.h"
  35. // CreateMruMenu : MRUMENU constructor
  36. // wNbLruShowInit : nb of item showed in menu
  37. // wNbLruMenuInit : nb of item stored in memory
  38. // wMaxSizeLruItemInit : size max. of filename
  39. //*************************************************************
  40. //
  41. // CreateMruMenu()
  42. //
  43. // Purpose:
  44. //
  45. // Allocate and Initialize an MRU and return a pointer on it
  46. //
  47. //
  48. // Parameters:
  49. //
  50. // WORD wNbLruShowInit - Maximum number of item displayed on menu
  51. // WORD wNbLruMenuInit - Maximum number of item stored in memory
  52. // WORD wMaxSizeLruItemInit - Maximum size of an item (ie size of pathname)
  53. // WORD wIdMruInit - ID of the first item in the menu (default:IDMRU)
  54. //
  55. //
  56. // Return: (LPMRUMENU)
  57. //
  58. // Pointer on a MRUMENU structure, used by other function
  59. //
  60. //
  61. // Comments:
  62. // wNbLruShowInit <= wNbLruMenuInit
  63. //
  64. //
  65. // History: Date Author Comment
  66. // 09/24/94 G. Vollant Created
  67. //
  68. //*************************************************************
  69. LPMRUMENU CreateMruMenu (WORD wNbLruShowInit,
  70. WORD wNbLruMenuInit,WORD wMaxSizeLruItemInit,WORD wIdMruInit)
  71. {
  72. LPMRUMENU lpMruMenu;
  73. lpMruMenu = (LPMRUMENU)GlobalAllocPtr(GHND,sizeof(MRUMENU));
  74. lpMruMenu->wNbItemFill = 0;
  75. lpMruMenu->wNbLruMenu = wNbLruMenuInit;
  76. lpMruMenu->wNbLruShow = wNbLruShowInit;
  77. lpMruMenu->wIdMru = wIdMruInit;
  78. lpMruMenu->wMaxSizeLruItem = wMaxSizeLruItemInit;
  79. lpMruMenu->lpMRU = (LPSTR)GlobalAllocPtr(GHND,
  80. lpMruMenu->wNbLruMenu*(UINT)lpMruMenu->wMaxSizeLruItem);
  81. if (lpMruMenu->lpMRU == NULL)
  82. {
  83. GlobalFreePtr(lpMruMenu);
  84. lpMruMenu = NULL;
  85. }
  86. return lpMruMenu;
  87. }
  88. //*************************************************************
  89. //
  90. // CreateMruMenuDefault()
  91. //
  92. // Purpose:
  93. //
  94. // Allocate and Initialize an MRU and return a pointer on it
  95. // Use default parameter
  96. //
  97. //
  98. // Parameters:
  99. //
  100. //
  101. // Return: (LPMRUMENU)
  102. //
  103. // Pointer on a MRUMENU structure, used by other function
  104. //
  105. //
  106. // Comments:
  107. //
  108. //
  109. // History: Date Author Comment
  110. // 09/24/94 G. Vollant Created
  111. //
  112. //*************************************************************
  113. LPMRUMENU CreateMruMenuDefault()
  114. {
  115. return CreateMruMenu (NBMRUMENUSHOW,NBMRUMENU,MAXSIZEMRUITEM,IDMRU);
  116. }
  117. //*************************************************************
  118. //
  119. // DeleteMruMenu()
  120. //
  121. // Purpose:
  122. // Destructor :
  123. // Clean and free a MRUMENU structure
  124. //
  125. // Parameters:
  126. //
  127. // LPMRUMENU lpMruMenu - pointer on MRUMENU, allocated
  128. // by CreateMruMenu() or CreateMruMenuDefault()
  129. //
  130. //
  131. // Return: void
  132. //
  133. //
  134. // Comments:
  135. //
  136. //
  137. // History: Date Author Comment
  138. // 09/24/94 G. Vollant Created
  139. //
  140. //*************************************************************
  141. void DeleteMruMenu(LPMRUMENU lpMruMenu)
  142. {
  143. GlobalFreePtr(lpMruMenu->lpMRU);
  144. GlobalFreePtr(lpMruMenu);
  145. }
  146. //*************************************************************
  147. //
  148. // SetNbLruShow()
  149. //
  150. // Purpose:
  151. // Change the maximum number of item displayed on menu
  152. //
  153. // Parameters:
  154. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  155. // WORD wNbLruShowInit - Maximum number of item displayed on menu
  156. //
  157. //
  158. // Return: void
  159. //
  160. //
  161. // Comments:
  162. //
  163. //
  164. // History: Date Author Comment
  165. // 09/24/94 G. Vollant Created
  166. //
  167. //*************************************************************
  168. void SetNbLruShow (LPMRUMENU lpMruMenu,WORD wNbLruShowInit)
  169. {
  170. lpMruMenu->wNbLruShow = min(wNbLruShowInit,lpMruMenu->wNbLruMenu);
  171. }
  172. //*************************************************************
  173. //
  174. // SetMenuItem()
  175. //
  176. // Purpose:
  177. // Set the filename of an item
  178. //
  179. // Parameters:
  180. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  181. // WORD wItem - Number of Item to set, zero based
  182. // LPSTR lpItem - String, contain the filename of the item
  183. //
  184. //
  185. // Return: (BOOL)
  186. // TRUE - Function run successfully
  187. // FALSE - Function don't run successfully
  188. //
  189. //
  190. // Comments:
  191. // used when load .INI or reg database
  192. //
  193. // History: Date Author Comment
  194. // 09/24/94 G. Vollant Created
  195. //
  196. //*************************************************************
  197. BOOL SetMenuItem (LPMRUMENU lpMruMenu,WORD wItem,LPSTR lpItem)
  198. {
  199. if (wItem >= NBMRUMENU)
  200. return FALSE;
  201. _fstrncpy((lpMruMenu->lpMRU) +
  202. ((lpMruMenu->wMaxSizeLruItem) * (UINT)wItem),
  203. lpItem,lpMruMenu->wMaxSizeLruItem-1);
  204. lpMruMenu->wNbItemFill = max(lpMruMenu->wNbItemFill,wItem+1);
  205. return TRUE;
  206. }
  207. //*************************************************************
  208. //
  209. // GetMenuItem()
  210. //
  211. // Purpose:
  212. // Get the filename of an item
  213. //
  214. // Parameters:
  215. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  216. // WORD wItem - Number of Item to set, zero based
  217. // BOOL fIDMBased - TRUE : wItem is based on ID menu item
  218. // FALSE : wItem is zero-based
  219. // LPSTR lpItem - String where the filename of the item will be
  220. // stored by GetMenuItem()
  221. // UINT uiSize - Size of the lpItem buffer
  222. //
  223. //
  224. // Return: (BOOL)
  225. // TRUE - Function run successfully
  226. // FALSE - Function don't run successfully
  227. //
  228. //
  229. // Comments:
  230. // Used for saving in .INI or reg database, or when user select
  231. // an MRU in File menu
  232. //
  233. // History: Date Author Comment
  234. // 09/24/94 G. Vollant Created
  235. //
  236. //*************************************************************
  237. BOOL GetMenuItem (LPMRUMENU lpMruMenu,WORD wItem,
  238. BOOL fIDMBased,LPSTR lpItem,UINT uiSize)
  239. {
  240. if (fIDMBased)
  241. wItem -= (lpMruMenu->wIdMru + 1);
  242. if (wItem >= lpMruMenu->wNbItemFill)
  243. return FALSE;
  244. _fstrncpy(lpItem,(lpMruMenu->lpMRU) +
  245. ((lpMruMenu->wMaxSizeLruItem) * (UINT)(wItem)),uiSize);
  246. *(lpItem+uiSize-1) = '\0';
  247. return TRUE;
  248. }
  249. //*************************************************************
  250. //
  251. // AddNewItem()
  252. //
  253. // Purpose:
  254. // Add an item at the begin of the list
  255. //
  256. // Parameters:
  257. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  258. // LPSTR lpItem - String contain the filename to add
  259. //
  260. // Return: (BOOL)
  261. // TRUE - Function run successfully
  262. // FALSE - Function don't run successfully
  263. //
  264. //
  265. // Comments:
  266. // Used when used open a file (using File Open common
  267. // dialog, Drag and drop or MRU)
  268. //
  269. // History: Date Author Comment
  270. // 09/24/94 G. Vollant Created
  271. //
  272. //*************************************************************
  273. void AddNewItem (LPMRUMENU lpMruMenu,LPSTR lpItem)
  274. {
  275. WORD i,j;
  276. for (i=0;i<lpMruMenu->wNbItemFill;i++)
  277. if (lstrcmpi(lpItem,(lpMruMenu->lpMRU) +
  278. ((lpMruMenu->wMaxSizeLruItem) * (UINT)i)) == 0)
  279. {
  280. // Shift the other items
  281. for (j=i;j>0;j--)
  282. lstrcpy((lpMruMenu->lpMRU) + (lpMruMenu->wMaxSizeLruItem * (UINT)j),
  283. (lpMruMenu->lpMRU) + (lpMruMenu->wMaxSizeLruItem * (UINT)(j-1)));
  284. _fstrncpy(lpMruMenu->lpMRU,lpItem,lpMruMenu->wMaxSizeLruItem-1);
  285. return ;
  286. }
  287. lpMruMenu->wNbItemFill = min(lpMruMenu->wNbItemFill+1,lpMruMenu->wNbLruMenu);
  288. for (i=lpMruMenu->wNbItemFill-1;i>0;i--)
  289. lstrcpy(lpMruMenu->lpMRU + (lpMruMenu->wMaxSizeLruItem * (UINT)i),
  290. lpMruMenu->lpMRU + (lpMruMenu->wMaxSizeLruItem * (UINT)(i-1)));
  291. _fstrncpy(lpMruMenu->lpMRU,lpItem,lpMruMenu->wMaxSizeLruItem-1);
  292. }
  293. //*************************************************************
  294. //
  295. // DelMenuItem()
  296. //
  297. // Purpose:
  298. // Delete an item
  299. //
  300. // Parameters:
  301. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  302. // WORD wItem - Number of Item to set, zero based
  303. // BOOL fIDMBased - TRUE : wItem is based on ID menu item
  304. // FALSE : wItem is zero-based
  305. //
  306. // Return: (BOOL)
  307. // TRUE - Function run successfully
  308. // FALSE - Function don't run successfully
  309. //
  310. //
  311. // Comments:
  312. // Used when used open a file, using MRU, and when an error
  313. // occured (by example, when file was deleted)
  314. //
  315. // History: Date Author Comment
  316. // 09/24/94 G. Vollant Created
  317. //
  318. //*************************************************************
  319. BOOL DelMenuItem(LPMRUMENU lpMruMenu,WORD wItem,BOOL fIDMBased)
  320. {
  321. WORD i;
  322. if (fIDMBased)
  323. wItem -= (lpMruMenu->wIdMru + 1);
  324. if (lpMruMenu->wNbItemFill <= wItem)
  325. return FALSE;
  326. lpMruMenu->wNbItemFill--;
  327. for (i=wItem;i<lpMruMenu->wNbItemFill;i++)
  328. lstrcpy(lpMruMenu->lpMRU + (lpMruMenu->wMaxSizeLruItem * (UINT)i),
  329. lpMruMenu->lpMRU + (lpMruMenu->wMaxSizeLruItem * (UINT)(i+1)));
  330. return TRUE;
  331. }
  332. //*************************************************************
  333. //
  334. // PlaceMenuMRUItem()
  335. //
  336. // Purpose:
  337. // Add MRU at the end of a menu
  338. //
  339. // Parameters:
  340. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  341. // HMENU hMenu - Handle of menu where MRU must be added
  342. // UINT uiItem - Item of menu entry where MRU must be added
  343. //
  344. // Return: void
  345. //
  346. //
  347. // Comments:
  348. // Used MRU is modified, for refresh the File menu
  349. //
  350. // History: Date Author Comment
  351. // 09/24/94 G. Vollant Created
  352. //
  353. //*************************************************************
  354. void PlaceMenuMRUItem(LPMRUMENU lpMruMenu,HMENU hMenu,UINT uiItem)
  355. {
  356. int i;
  357. WORD wNbShow;
  358. if (hMenu == NULL)
  359. return;
  360. // remove old MRU in menu
  361. for (i=0;i<=(int)(lpMruMenu->wNbLruMenu);i++)
  362. RemoveMenu(hMenu,i+lpMruMenu->wIdMru,MF_BYCOMMAND);
  363. if (lpMruMenu->wNbItemFill == 0)
  364. return;
  365. // If they are item, insert a separator before the files
  366. InsertMenu(hMenu,uiItem,MF_SEPARATOR,lpMruMenu->wIdMru,NULL);
  367. wNbShow = min(lpMruMenu->wNbItemFill,lpMruMenu->wNbLruShow);
  368. for (i=(int)wNbShow-1;i>=0;i--)
  369. {
  370. LPSTR lpTxt;
  371. if (lpTxt = (LPSTR)GlobalAllocPtr(GHND,lpMruMenu->wMaxSizeLruItem + 20))
  372. {
  373. wsprintf(lpTxt,"&%lu %s",
  374. (DWORD)(i+1),lpMruMenu->lpMRU + (lpMruMenu->wMaxSizeLruItem*(UINT)i));
  375. InsertMenu(hMenu,(((WORD)i)!=(wNbShow-1)) ? (lpMruMenu->wIdMru+i+2) : lpMruMenu->wIdMru,
  376. MF_STRING,lpMruMenu->wIdMru+i+1,lpTxt);
  377. GlobalFreePtr(lpTxt);
  378. }
  379. }
  380. }
  381. ///////////////////////////////////////////
  382. //*************************************************************
  383. //
  384. // SaveMruInIni()
  385. //
  386. // Purpose:
  387. // Save MRU in a private .INI
  388. //
  389. // Parameters:
  390. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  391. // LPSTR lpszSection - Points to a null-terminated string containing
  392. // the name of the section
  393. // LPSTR lpszFile - Points to a null-terminated string that names
  394. // the initialization file.
  395. //
  396. // Return: (BOOL)
  397. // TRUE - Function run successfully
  398. // FALSE - Function don't run successfully
  399. //
  400. //
  401. // Comments:
  402. // See WritePrivateProfileString API for more info on lpszSection and lpszFile
  403. //
  404. // History: Date Author Comment
  405. // 09/24/94 G. Vollant Created
  406. //
  407. //*************************************************************
  408. BOOL SaveMruInIni(LPMRUMENU lpMruMenu,LPSTR lpszSection,LPSTR lpszFile)
  409. {
  410. LPSTR lpTxt;
  411. WORD i;
  412. lpTxt = (LPSTR)GlobalAllocPtr(GHND,lpMruMenu->wMaxSizeLruItem + 20);
  413. if (lpTxt == NULL)
  414. return FALSE;
  415. for (i=0;i<lpMruMenu->wNbLruMenu;i++)
  416. {
  417. char szEntry[16];
  418. wsprintf(szEntry,"File%lu",(DWORD)i+1);
  419. if (!GetMenuItem(lpMruMenu,i,FALSE,lpTxt,lpMruMenu->wMaxSizeLruItem + 10))
  420. *lpTxt = '\0';
  421. WritePrivateProfileString(lpszSection,szEntry,lpTxt,lpszFile);
  422. }
  423. GlobalFreePtr(lpTxt);
  424. WritePrivateProfileString(NULL,NULL,NULL,lpszFile); // flush cache
  425. return TRUE;
  426. }
  427. //*************************************************************
  428. //
  429. // LoadMruInIni()
  430. //
  431. // Purpose:
  432. // Load MRU from a private .INI
  433. //
  434. // Parameters:
  435. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  436. // LPSTR lpszSection - Points to a null-terminated string containing
  437. // the name of the section
  438. // LPSTR lpszFile - Points to a null-terminated string that names
  439. // the initialization file.
  440. //
  441. // Return: (BOOL)
  442. // TRUE - Function run successfully
  443. // FALSE - Function don't run successfully
  444. //
  445. //
  446. // Comments:
  447. // See GetPrivateProfileString API for more info on lpszSection and lpszFile
  448. //
  449. // History: Date Author Comment
  450. // 09/24/94 G. Vollant Created
  451. //
  452. //*************************************************************
  453. BOOL LoadMruInIni(LPMRUMENU lpMruMenu,LPSTR lpszSection,LPSTR lpszFile)
  454. {
  455. LPSTR lpTxt;
  456. WORD i;
  457. lpTxt = (LPSTR)GlobalAllocPtr(GHND,lpMruMenu->wMaxSizeLruItem + 20);
  458. if (lpTxt == NULL)
  459. return FALSE;
  460. for (i=0;i<lpMruMenu->wNbLruMenu;i++)
  461. {
  462. char szEntry[16];
  463. wsprintf(szEntry,"File%lu",(DWORD)i+1);
  464. GetPrivateProfileString(lpszSection,szEntry,"",lpTxt,
  465. lpMruMenu->wMaxSizeLruItem + 10,lpszFile);
  466. if (*lpTxt == '\0')
  467. break;
  468. SetMenuItem(lpMruMenu,i,lpTxt);
  469. }
  470. GlobalFreePtr(lpTxt);
  471. return TRUE;
  472. }
  473. #ifdef WIN32
  474. BOOL IsWin395OrHigher(void)
  475. {
  476. WORD wVer;
  477. wVer = LOWORD(GetVersion());
  478. wVer = (((WORD)LOBYTE(wVer)) << 8) | (WORD)HIBYTE(wVer);
  479. return (wVer >= 0x035F); // 5F = 95 dec
  480. }
  481. //*************************************************************
  482. //
  483. // SaveMruInReg()
  484. //
  485. // Purpose:
  486. // Save MRU in the registry
  487. //
  488. // Parameters:
  489. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  490. // LPSTR lpszKey - Points to a null-terminated string
  491. // specifying the name of a key that
  492. // this function opens or creates.
  493. //
  494. // Return: (BOOL)
  495. // TRUE - Function run successfully
  496. // FALSE - Function don't run successfully
  497. //
  498. //
  499. // Comments:
  500. // Win32 function designed for Windows NT and Windows 95
  501. // See RegCreateKeyEx API for more info on lpszKey
  502. //
  503. // History: Date Author Comment
  504. // 09/24/94 G. Vollant Created
  505. //
  506. //*************************************************************
  507. BOOL SaveMruInReg(LPMRUMENU lpMruMenu,LPSTR lpszKey)
  508. {
  509. LPSTR lpTxt;
  510. WORD i;
  511. HKEY hCurKey;
  512. DWORD dwDisp;
  513. lpTxt = (LPSTR)GlobalAllocPtr(GHND,lpMruMenu->wMaxSizeLruItem + 20);
  514. if (lpTxt == NULL)
  515. return FALSE;
  516. RegCreateKeyEx(HKEY_CURRENT_USER,lpszKey,0,NULL,
  517. REG_OPTION_NON_VOLATILE,KEY_ALL_ACCESS,NULL,&hCurKey,&dwDisp);
  518. for (i=0;i<lpMruMenu->wNbLruMenu;i++)
  519. {
  520. char szEntry[16];
  521. wsprintf(szEntry,"File%lu",(DWORD)i+1);
  522. if (!GetMenuItem(lpMruMenu,i,FALSE,lpTxt,lpMruMenu->wMaxSizeLruItem + 10))
  523. *lpTxt = '\0';
  524. RegSetValueEx(hCurKey,szEntry,0,REG_SZ,(unsigned char*)lpTxt,lstrlen(lpTxt));
  525. }
  526. RegCloseKey(hCurKey);
  527. GlobalFreePtr(lpTxt);
  528. return TRUE;
  529. }
  530. //*************************************************************
  531. //
  532. // LoadMruInReg()
  533. //
  534. // Purpose:
  535. // Load MRU from the registry
  536. //
  537. // Parameters:
  538. // LPMRUMENU lpMruMenu - pointer on MRUMENU
  539. // LPSTR lpszKey - Points to a null-terminated string
  540. // specifying the name of a key that
  541. // this function opens or creates.
  542. //
  543. // Return: (BOOL)
  544. // TRUE - Function run successfully
  545. // FALSE - Function don't run successfully
  546. //
  547. //
  548. // Comments:
  549. // Win32 function designed for Windows NT and Windows 95
  550. // See RegOpenKeyEx API for more info on lpszKey
  551. //
  552. // History: Date Author Comment
  553. // 09/24/94 G. Vollant Created
  554. //
  555. //*************************************************************
  556. BOOL LoadMruInReg(LPMRUMENU lpMruMenu,LPSTR lpszKey)
  557. {
  558. LPSTR lpTxt;
  559. WORD i;
  560. HKEY hCurKey;
  561. DWORD dwType;
  562. lpTxt = (LPSTR)GlobalAllocPtr(GHND,lpMruMenu->wMaxSizeLruItem + 20);
  563. if (lpTxt == NULL)
  564. return FALSE;
  565. RegOpenKeyEx(HKEY_CURRENT_USER,lpszKey,0,KEY_READ,&hCurKey);
  566. for (i=0;i<lpMruMenu->wNbLruMenu;i++)
  567. {
  568. char szEntry[16];
  569. DWORD dwSizeBuf;
  570. wsprintf(szEntry,"File%lu",(DWORD)i+1);
  571. *lpTxt = '\0';
  572. dwSizeBuf = lpMruMenu->wMaxSizeLruItem + 10;
  573. RegQueryValueEx(hCurKey,szEntry,NULL,&dwType,(LPBYTE)lpTxt,&dwSizeBuf);
  574. *(lpTxt+dwSizeBuf)='\0';
  575. if (*lpTxt == '\0')
  576. break;
  577. SetMenuItem(lpMruMenu,i,lpTxt);
  578. }
  579. RegCloseKey(hCurKey);
  580. GlobalFreePtr(lpTxt);
  581. return TRUE;
  582. }
  583. //*************************************************************
  584. //
  585. // GetWin32Kind()
  586. //
  587. // Purpose:
  588. // Get the Win32 platform
  589. //
  590. // Parameters:
  591. //
  592. // Return: (WIN32KIND)
  593. // WINNT - Run under Windows NT
  594. // WIN32S - Run under Windows 3.1x + Win32s
  595. // WIN95ORGREATHER - Run under Windows 95
  596. //
  597. //
  598. // Comments:
  599. // Win32 function designed for Windows NT and Windows 95
  600. // See RegOpenKeyEx API for more info on lpszKey
  601. //
  602. // History: Date Author Comment
  603. // 09/24/94 G. Vollant Created
  604. //
  605. //*************************************************************
  606. WIN32KIND GetWin32Kind()
  607. {
  608. BOOL IsWin395OrHigher(void);
  609. WORD wVer;
  610. if ((GetVersion() & 0x80000000) == 0)
  611. return WINNT;
  612. wVer = LOWORD(GetVersion());
  613. wVer = (((WORD)LOBYTE(wVer)) << 8) | (WORD)HIBYTE(wVer);
  614. if (wVer >= 0x035F)
  615. return WIN95ORGREATHER;
  616. else
  617. return WIN32S;
  618. }
  619. #endif