Changeset 21720
- Timestamp:
- Oct 19, 2011, 11:26:02 AM (13 years ago)
- Location:
- branches/gcc-kmk
- Files:
-
- 91 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/gcc-kmk/include/custombuild.h ¶
r21717 r21720 2 2 #define __CUSTOMBUILD_H__ 3 3 4 #include <win \peexe.h>4 #include <win/peexe.h> 5 5 #include <initdll.h> 6 6 -
TabularUnified branches/gcc-kmk/include/heapstring.h ¶
r10192 r21720 9 9 #include <odin.h> 10 10 11 #include <wine \unicode.h>11 #include <wine/unicode.h> 12 12 //SvL: strcase -> case insensitive! 13 13 #define strncasecmp lstrncmpiA -
TabularUnified branches/gcc-kmk/include/odinlx.h ¶
r21393 r21720 14 14 #define _ODINLX_H 15 15 16 #include <win \peexe.h>16 #include <win/peexe.h> 17 17 #include <versionos2.h> 18 18 -
TabularUnified branches/gcc-kmk/include/win/wine/debug.h ¶
r8208 r21720 22 22 #define __WINE_WINE_DEBUG_H 23 23 24 #include <win \debugtools.h>24 #include <win/debugtools.h> 25 25 #include <stdarg.h> 26 26 -
TabularUnified branches/gcc-kmk/src/advapi32/service.cpp ¶
r5976 r21720 10 10 * 11 11 * 12 * TODO: Not done; starting services; control handlers and many other things 12 * TODO: Not done; starting services; control handlers and many other things 13 13 * TODO: Service status handles are the same as service handles 14 14 * … … 26 26 #include <misc.h> 27 27 #include <unicode.h> 28 #include <win \winreg.h>29 #include <win \winsvc.h>28 #include <win/winreg.h> 29 #include <win/winsvc.h> 30 30 #include <heapstring.h> 31 31 #define USE_ODIN_REGISTRY_APIS … … 71 71 //TODO: Faster way to checking this 72 72 //***************************************************************************** 73 BOOL CheckServiceHandle(SC_HANDLE hService) 73 BOOL CheckServiceHandle(SC_HANDLE hService) 74 74 { 75 75 HKEY keyThisService; … … 147 147 fdwDesiredAccess)); 148 148 149 if(lpszMachineName) 149 if(lpszMachineName) 150 150 lpszMachineNameA = HEAP_strdupWtoA(GetProcessHeap(), 0, lpszMachineName); 151 151 if(lpszDatabaseName) … … 154 154 hService = OpenSCManagerA(lpszMachineNameA, lpszDataBaseNameA, fdwDesiredAccess); 155 155 156 if(lpszMachineNameA) 156 if(lpszMachineNameA) 157 157 HeapFree(GetProcessHeap(), 0, lpszMachineNameA); 158 158 if(lpszDataBaseNameA) … … 190 190 return FALSE; 191 191 } 192 192 193 193 if(lpszServiceName == NULL) { 194 194 SetLastError(ERROR_INVALID_PARAMETER); … … 442 442 * Result : 443 443 * Remark : 444 * Status : 444 * Status : 445 445 * 446 446 * Author : SvL … … 494 494 * Result : 495 495 * Remark : 496 * Status : 496 * Status : 497 497 * 498 498 * Author : SvL … … 574 574 * Result : 575 575 * Remark : 576 * Status : 576 * Status : 577 577 * 578 578 * Author : SvL … … 621 621 * Result : 622 622 * Remark : 623 * Status : 623 * Status : 624 624 * 625 625 * Author : SvL … … 665 665 * Result : 666 666 * Remark : 667 * Status : 667 * Status : 668 668 * 669 669 * Author : SvL … … 719 719 RegSetValueExA(keyThisService, REG_SERVICE_STARTTYPE, 0, REG_DWORD, (LPBYTE)&dwStartType, sizeof(DWORD)); 720 720 RegSetValueExA(keyThisService, REG_SERVICE_ERRORCONTROL, 0, REG_DWORD, (LPBYTE)&dwErrorControl, sizeof(DWORD)); 721 if(lpDisplayName) 721 if(lpDisplayName) 722 722 RegSetValueExA(keyThisService, REG_SERVICE_DISPLAYNAME, 0, REG_SZ, (LPBYTE)lpDisplayName, strlen(lpDisplayName)+1); 723 if(lpLoadOrderGroup) 723 if(lpLoadOrderGroup) 724 724 RegSetValueExA(keyThisService, REG_SERVICE_LOADORDERGROUP, 0, REG_SZ, (LPBYTE)lpDisplayName, strlen(lpLoadOrderGroup)+1); 725 725 if(lpDependencies) { … … 736 736 737 737 //Pointer to a variable that receives a tag value that is unique in the group specified in the 738 //lpLoadOrderGroup parameter. Specify NULL if you are not changing the existing tag. 738 //lpLoadOrderGroup parameter. Specify NULL if you are not changing the existing tag. 739 739 DWORD tag = 1; //TODO!! 740 740 RegSetValueExA(keyThisService, REG_SERVICE_TAG, 0, REG_DWORD, (LPBYTE)&tag, sizeof(DWORD)); … … 773 773 * Result : 774 774 * Remark : 775 * Status : 775 * Status : 776 776 * 777 777 * Author : SvL … … 855 855 * Result : 856 856 * Remark : 857 * Status : 857 * Status : 858 858 * 859 859 * Author : SvL … … 893 893 * Result : 894 894 * Remark : 895 * Status : 895 * Status : 896 896 * 897 897 * Author : SvL … … 929 929 * Result : 930 930 * Remark : 931 * Status : 931 * Status : 932 932 * 933 933 * Author : SvL … … 962 962 * Result : 963 963 * Remark : 964 * Status : 964 * Status : 965 965 * 966 966 * Author : SvL … … 1021 1021 * Result : 1022 1022 * Remark : 1023 * Status : 1023 * Status : 1024 1024 * 1025 1025 * Author : SvL … … 1359 1359 while(*cmd != ' ' && *cmd != 0) cmd++; //skip non-space chars 1360 1360 while(*cmd == ' ' && *cmd != 0) cmd++; //skip spaces 1361 nrargs++; 1361 nrargs++; 1362 1362 } 1363 1363 return nrargs; … … 1373 1373 * Result : 1374 1374 * Remark : 1375 * Status : 1375 * Status : 1376 1376 * 1377 1377 * Author : SvL … … 1413 1413 * Result : 1414 1414 * Remark : 1415 * Status : 1415 * Status : 1416 1416 * 1417 1417 * Author : SvL … … 1453 1453 * Result : 1454 1454 * Remark : 1455 * Status : 1455 * Status : 1456 1456 * 1457 1457 * Author : SvL … … 1467 1467 lpHandlerProc)); 1468 1468 1469 //Doesn't work for services of type 1469 //Doesn't work for services of type 1470 1470 if(lpszServiceName == NULL) { 1471 1471 SetLastError(ERROR_INVALID_NAME); … … 1494 1494 * Result : 1495 1495 * Remark : 1496 * Status : 1496 * Status : 1497 1497 * 1498 1498 * Author : SvL … … 1503 1503 { 1504 1504 SC_HANDLE hSCMgr, hService; 1505 1505 1506 1506 dprintf(("ADVAPI32: RegisterServiceCtrlHandlerW(%s,%08xh) not implemented (FAKED)", 1507 1507 lpszServiceName, 1508 1508 lpHandlerProc)); 1509 1509 1510 //Doesn't work for services of type 1510 //Doesn't work for services of type 1511 1511 if(lpszServiceName == NULL) { 1512 1512 SetLastError(ERROR_INVALID_NAME); … … 1542 1542 * Result : 1543 1543 * Remark : 1544 * Status : 1544 * Status : 1545 1545 * 1546 1546 * Author : SvL … … 1597 1597 * Result : 1598 1598 * Remark : Called from ServiceMain function (registered with RegisterServiceCtrlHandler) 1599 * Status : 1599 * Status : 1600 1600 * 1601 1601 * Author : SvL … … 1637 1637 * Result : 1638 1638 * Remark : 1639 * Status : 1639 * Status : 1640 1640 * 1641 1641 * Author : SvL … … 1685 1685 keytype = REG_DWORD; 1686 1686 RegQueryValueExA((HKEY)schService, REG_SERVICE_WAITHINT, 0, &keytype, (LPBYTE)&lpssServiceStatus->dwWaitHint, &size); 1687 1687 1688 1688 SetLastError(0); 1689 1689 return TRUE; -
TabularUnified branches/gcc-kmk/src/comdlg32/cdlg.h ¶
r8593 r21720 64 64 #define PD32_PRINTER_STATUS_READY 1536 65 65 #define PD32_PRINTER_STATUS_PAUSED 1537 66 #define PD32_PRINTER_STATUS_ERROR 1538 66 #define PD32_PRINTER_STATUS_ERROR 1538 67 67 #define PD32_PRINTER_STATUS_PENDING_DELETION 1539 68 68 #define PD32_PRINTER_STATUS_PAPER_JAM 1540 … … 102 102 /* DPA */ 103 103 #ifdef __WIN32OS2__ 104 #include <win \shell.h>104 #include <win/shell.h> 105 105 106 106 LPVOID WINAPI SHAlloc(DWORD); -
TabularUnified branches/gcc-kmk/src/comdlg32/filedlg.c ¶
r9522 r21720 22 22 23 23 #ifdef __WIN32OS2__ 24 #include <win \cursoricon.h>24 #include <win/cursoricon.h> 25 25 #include <heapstring.h> 26 26 … … 42 42 43 43 #define BUFFILE 512 44 #define BUFFILEALLOC 512 * sizeof(WCHAR) 45 46 struct FSPRIVATE 44 #define BUFFILEALLOC 512 * sizeof(WCHAR) 45 46 struct FSPRIVATE 47 47 { 48 48 HWND hwnd; /* file dialog window handle */ … … 75 75 #define LFS32A 2 76 76 #define LFS32W 3 77 77 78 78 static const WCHAR FILE_star[] = {'*','.','*', 0}; 79 79 static const WCHAR FILE_bslash[] = {'\\', 0}; … … 125 125 static BOOL initialized = 0; 126 126 CURSORICONINFO *fldrInfo; 127 127 128 128 if (!initialized) { 129 129 #ifdef __WIN32OS2__ … … 148 148 hNet = LoadImageA( inst, "NETWORK", IMAGE_ICON, 16, 16, LR_SHARED ); 149 149 #endif 150 if (hFolder == 0 || hFolder2 == 0 || hFloppy == 0 || 150 if (hFolder == 0 || hFolder2 == 0 || hFloppy == 0 || 151 151 hHDisk == 0 || hCDRom == 0 || hNet == 0) 152 152 { … … 160 160 fldrInfo = (CURSORICONINFO *) GlobalLock16( hFolder2 ); 161 161 if (!fldrInfo) 162 { 162 { 163 163 ERR("Error measuring icons !\n"); 164 164 return FALSE; … … 219 219 } else { /* get it from internal Wine resource */ 220 220 HANDLE hResInfo; 221 if (!(hResInfo = FindResourceA(COMMDLG_hInstance32, 221 if (!(hResInfo = FindResourceA(COMMDLG_hInstance32, 222 222 lfs->open? "OPEN_FILE":"SAVE_FILE", RT_DIALOGA))) 223 223 { … … 274 274 DWORD size; 275 275 276 if (!(hResInfo = FindResourceA(COMMDLG_hInstance32, 276 if (!(hResInfo = FindResourceA(COMMDLG_hInstance32, 277 277 lfs->open ? "OPEN_FILE":"SAVE_FILE", RT_DIALOGA))) 278 278 { … … 424 424 i = 0; 425 425 if (cfptr) 426 for ( ;(n = lstrlenW(cfptr)) != 0; i++) 426 for ( ;(n = lstrlenW(cfptr)) != 0; i++) 427 427 { 428 428 cfptr += n + 1; … … 432 432 } 433 433 if (fptr) 434 for ( ;(n = lstrlenW(fptr)) != 0; i++) 434 for ( ;(n = lstrlenW(fptr)) != 0; i++) 435 435 { 436 436 fptr += n + 1; … … 455 455 { 456 456 if (!(str = HeapAlloc(GetProcessHeap(), 0, BUFFILEALLOC))) return FALSE; 457 SendMessageW(lpdis->hwndItem, LB_GETTEXT, lpdis->itemID, 457 SendMessageW(lpdis->hwndItem, LB_GETTEXT, lpdis->itemID, 458 458 (LPARAM)str); 459 459 … … 486 486 if (!(str = HeapAlloc(GetProcessHeap(), 0, BUFFILEALLOC))) 487 487 return FALSE; 488 SendMessageW(lpdis->hwndItem, LB_GETTEXT, lpdis->itemID, 488 SendMessageW(lpdis->hwndItem, LB_GETTEXT, lpdis->itemID, 489 489 (LPARAM)str); 490 490 … … 515 515 if (!(str = HeapAlloc(GetProcessHeap(), 0, BUFFILEALLOC))) 516 516 return FALSE; 517 SendMessageW(lpdis->hwndItem, CB_GETLBTEXT, lpdis->itemID, 517 SendMessageW(lpdis->hwndItem, CB_GETLBTEXT, lpdis->itemID, 518 518 (LPARAM)str); 519 519 root[0] += str[2] - 'a'; … … 550 550 * FILEDLG_WMMeasureItem [internal] 551 551 */ 552 static LONG FILEDLG_WMMeasureItem(HWND hWnd, WPARAM wParam, LPARAM lParam) 552 static LONG FILEDLG_WMMeasureItem(HWND hWnd, WPARAM wParam, LPARAM lParam) 553 553 { 554 554 LPMEASUREITEMSTRUCT lpmeasure; 555 555 556 556 lpmeasure = (LPMEASUREITEMSTRUCT)lParam; 557 557 lpmeasure->itemHeight = fldrHeight; … … 562 562 */ 563 563 #ifdef __WIN32OS2__ 564 static LONG FILEDLG_WMMeasureItem16(HWND hWnd, WPARAM wParam, LPARAM lParam) 564 static LONG FILEDLG_WMMeasureItem16(HWND hWnd, WPARAM wParam, LPARAM lParam) 565 565 { 566 566 LPMEASUREITEMSTRUCT lpmeasure; 567 567 568 568 lpmeasure = (LPMEASUREITEMSTRUCT)lParam; 569 569 lpmeasure->itemHeight = fldrHeight; … … 571 571 } 572 572 #else 573 static LONG FILEDLG_WMMeasureItem16(HWND16 hWnd, WPARAM16 wParam, LPARAM lParam) 573 static LONG FILEDLG_WMMeasureItem16(HWND16 hWnd, WPARAM16 wParam, LPARAM lParam) 574 574 { 575 575 LPMEASUREITEMSTRUCT16 lpmeasure; 576 576 577 577 lpmeasure = MapSL(lParam); 578 578 lpmeasure->itemHeight = fldrHeight; … … 641 641 if (ofn->nFilterIndex == 0 && ofn->lpstrCustomFilter == NULL) 642 642 ofn->nFilterIndex = 1; 643 SendDlgItemMessageW(hWnd, cmb1, CB_SETCURSEL, ofn->nFilterIndex - 1, 0); 643 SendDlgItemMessageW(hWnd, cmb1, CB_SETCURSEL, ofn->nFilterIndex - 1, 0); 644 644 lstrcpynW(tmpstr, FILEDLG_GetFileType(ofn->lpstrCustomFilter, 645 645 (LPWSTR)ofn->lpstrFilter, ofn->nFilterIndex - 1),BUFFILE); 646 TRACE("nFilterIndex = %ld, SetText of edt1 to '%s'\n", 646 TRACE("nFilterIndex = %ld, SetText of edt1 to '%s'\n", 647 647 ofn->nFilterIndex, debugstr_w(tmpstr)); 648 648 SetDlgItemTextW( hWnd, edt1, tmpstr ); … … 651 651 DlgDirListComboBoxW(hWnd, tmpstr, cmb2, 0, DDL_DRIVES | DDL_EXCLUSIVE); 652 652 /* read initial directory */ 653 if (ofn->lpstrInitialDir != NULL) 653 if (ofn->lpstrInitialDir != NULL) 654 654 { 655 655 int len; … … 720 720 /*********************************************************************** 721 721 * FILEDLG_UpdateResult [internal] 722 * update the displayed file name (with path) 722 * update the displayed file name (with path) 723 723 */ 724 724 void FILEDLG_UpdateResult(LFSPRIVATE lfs, WCHAR *tmpstr) … … 779 779 /*********************************************************************** 780 780 * FILEDLG_UpdateFileTitle [internal] 781 * update the displayed file name (without path) 781 * update the displayed file name (without path) 782 782 */ 783 783 void FILEDLG_UpdateFileTitle(LFSPRIVATE lfs) … … 785 785 LONG lRet; 786 786 LPOPENFILENAMEW ofnW = lfs->ofnW; 787 if (ofnW->lpstrFileTitle != NULL) 787 if (ofnW->lpstrFileTitle != NULL) 788 788 { 789 789 lRet = SendDlgItemMessageW(lfs->hwnd, lst1, LB_GETCURSEL, 0, 0); … … 997 997 lRet = (BOOL)FILEDLG_CallWindowProc(lfs, lfs->fileokstring, 998 998 0, lfs->lParam ); 999 if (lRet) 999 if (lRet) 1000 1000 { 1001 1001 *ofnW = ofnsav; /* restore old state */ … … 1035 1035 (LPARAM)pstr); 1036 1036 wsprintfW(diskname, FILE_specc, pstr[2]); 1037 HeapFree(GetProcessHeap(), 0, pstr); 1037 HeapFree(GetProcessHeap(), 0, pstr); 1038 1038 1039 1039 return FILEDLG_Validate( lfs, diskname, cmb2, lRet, TRUE ); … … 1067 1067 */ 1068 1068 static LRESULT FILEDLG_WMCommand(HWND hWnd, LPARAM lParam, UINT notification, 1069 UINT control, LFSPRIVATE lfs ) 1069 UINT control, LFSPRIVATE lfs ) 1070 1070 { 1071 1071 switch (control) … … 1090 1090 1091 1091 case cmb1: /* file type drop list */ 1092 if (notification == CBN_SELCHANGE) 1092 if (notification == CBN_SELCHANGE) 1093 1093 return FILEDLG_FileTypeChange( lfs ); 1094 1094 break; … … 1215 1215 if (ofnA->lpstrTitle) 1216 1216 str = ofnA->lpstrTitle; 1217 else 1217 else 1218 1218 /* Allocates default title (FIXME : get it from resource) */ 1219 1219 str = open ? defaultopen:defaultsave; … … 1272 1272 /************************************************************************ 1273 1273 * FILEDLG_DestroyPrivate [internal] 1274 * destroys the private object 1274 * destroys the private object 1275 1275 */ 1276 1276 void FILEDLG_DestroyPrivate(LFSPRIVATE lfs) … … 1311 1311 /************************************************************************ 1312 1312 * FILEDLG_AllocPrivate [internal] 1313 * allocate a private object to hold 32 bits Unicode 1313 * allocate a private object to hold 32 bits Unicode 1314 1314 * structure that will be used throughtout the calls, while 1315 1315 * keeping available the original structures and a few variables … … 1369 1369 FILEDLG_MapOfnStructA(lfs->ofnA, lfs->ofnW, lfs->open); 1370 1370 } 1371 else 1371 else 1372 1372 ret = NULL; 1373 1373 } … … 1390 1390 * Creates a win31 style dialog box for the user to select a file to open/save. 1391 1391 */ 1392 BOOL WINAPI GetFileName31A( 1392 BOOL WINAPI GetFileName31A( 1393 1393 LPOPENFILENAMEA lpofn, /* addess of structure with data*/ 1394 1394 UINT dlgType /* type dialogue : open/save */ … … 1405 1405 { 1406 1406 hInst = GetWindowLongA( lpofn->hwndOwner, GWL_HINSTANCE ); 1407 bRet = DialogBoxIndirectParamA( hInst, lfs->template, lpofn->hwndOwner, 1407 bRet = DialogBoxIndirectParamA( hInst, lfs->template, lpofn->hwndOwner, 1408 1408 (DLGPROC) FileOpenDlgProc, (DWORD) lfs); 1409 1409 FILEDLG_DestroyPrivate(lfs); … … 1420 1420 * Creates a win31 style dialog box for the user to select a file to open/save 1421 1421 */ 1422 BOOL WINAPI GetFileName31W( 1422 BOOL WINAPI GetFileName31W( 1423 1423 LPOPENFILENAMEW lpofn, /* addess of structure with data*/ 1424 1424 UINT dlgType /* type dialogue : open/save */ … … 1435 1435 { 1436 1436 hInst = GetWindowLongA( lpofn->hwndOwner, GWL_HINSTANCE ); 1437 bRet = DialogBoxIndirectParamW( hInst, lfs->template, lpofn->hwndOwner, 1437 bRet = DialogBoxIndirectParamW( hInst, lfs->template, lpofn->hwndOwner, 1438 1438 (DLGPROC) FileOpenDlgProc, (DWORD) lfs); 1439 1439 FILEDLG_DestroyPrivate(lfs); … … 1453 1453 LRESULT WINAPI FileOpenDlgProc16(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam, 1454 1454 LPARAM lParam) 1455 { 1455 { 1456 1456 LFSPRIVATE lfs = (LFSPRIVATE)GetPropA(hWnd,OFN_PROP); 1457 1457 DRAWITEMSTRUCT dis; 1458 1458 1459 1459 TRACE("msg=%x wparam=%x lParam=%lx\n", wMsg, wParam, lParam); 1460 1460 if ((wMsg != WM_INITDIALOG) && lfs && lfs->hook) 1461 1461 { 1462 1462 LRESULT lRet = (BOOL16)FILEDLG_CallWindowProc(lfs, wMsg, wParam, lParam); 1463 if (lRet) 1463 if (lRet) 1464 1464 return lRet; /* else continue message processing */ 1465 1465 } … … 1510 1510 LRESULT lRet; 1511 1511 lRet = (BOOL16)FILEDLG_CallWindowProc(lfs, wMsg, wParam, lParam); 1512 if (lRet) 1512 if (lRet) 1513 1513 return lRet; /* else continue message processing */ 1514 } 1514 } 1515 1515 switch (wMsg) { 1516 1516 case WM_INITDIALOG: 1517 1517 return FILEDLG_WMInitDialog(hWnd, wParam, lParam); 1518 1518 1519 1519 case WM_MEASUREITEM: 1520 1520 return FILEDLG_WMMeasureItem16(hWnd, wParam, lParam); 1521 1521 1522 1522 case WM_DRAWITEM: 1523 1523 FILEDLG_MapDrawItemStruct(MapSL(lParam), &dis); … … 1527 1527 return FILEDLG_WMCommand(hWnd, lParam, HIWORD(lParam), wParam, lfs); 1528 1528 } 1529 1529 1530 1530 /* 1531 1531 case WM_CTLCOLOR: … … 1541 1541 } 1542 1542 return FALSE; 1543 1543 1544 1544 */ 1545 1545 return FALSE; … … 1549 1549 /*********************************************************************** 1550 1550 * FileOpenDlgProc [internal] 1551 * Used for open and save, in fact. 1551 * Used for open and save, in fact. 1552 1552 */ 1553 1553 static LRESULT WINAPI FileOpenDlgProc(HWND hWnd, UINT wMsg, … … 1561 1561 LRESULT lRet; 1562 1562 lRet = (BOOL)FILEDLG_CallWindowProc(lfs, wMsg, wParam, lParam); 1563 if (lRet) 1563 if (lRet) 1564 1564 return lRet; /* else continue message processing */ 1565 1565 } … … 1595 1595 } 1596 1596 1597 /* ------------------ APIs ---------------------- */ 1597 /* ------------------ APIs ---------------------- */ 1598 1598 #ifndef __WIN32OS2__ 1599 1599 /*********************************************************************** … … 1609 1609 * unknown, there are some FIXME's left. 1610 1610 */ 1611 BOOL16 WINAPI GetOpenFileName16( 1611 BOOL16 WINAPI GetOpenFileName16( 1612 1612 SEGPTR ofn /* [in/out] address of structure with data*/ 1613 1613 ) … … 1626 1626 hInst = GetWindowLongA( lpofn->hwndOwner, GWL_HINSTANCE ); 1627 1627 ptr = GetProcAddress16(GetModuleHandle16("COMMDLG"), (LPCSTR) 6); 1628 bRet = DialogBoxIndirectParam16( hInst, lfs->hDlgTmpl16, lpofn->hwndOwner, 1628 bRet = DialogBoxIndirectParam16( hInst, lfs->hDlgTmpl16, lpofn->hwndOwner, 1629 1629 (DLGPROC16) ptr, (DWORD) lfs); 1630 1630 FILEDLG_DestroyPrivate(lfs); … … 1647 1647 * unknown. There are some FIXME's left. 1648 1648 */ 1649 BOOL16 WINAPI GetSaveFileName16( 1649 BOOL16 WINAPI GetSaveFileName16( 1650 1650 SEGPTR ofn /* [in/out] addess of structure with data*/ 1651 1651 ) … … 1664 1664 hInst = GetWindowLongA( lpofn->hwndOwner, GWL_HINSTANCE ); 1665 1665 ptr = GetProcAddress16(GetModuleHandle16("COMMDLG"), (LPCSTR) 7); 1666 bRet = DialogBoxIndirectParam16( hInst, lfs->hDlgTmpl16, lpofn->hwndOwner, 1666 bRet = DialogBoxIndirectParam16( hInst, lfs->hDlgTmpl16, lpofn->hwndOwner, 1667 1667 (DLGPROC16) ptr, (DWORD) lfs); 1668 1668 FILEDLG_DestroyPrivate(lfs); 1669 } 1669 } 1670 1670 1671 1671 TRACE("return lpstrFile='%s' !\n", (char *)MapSL(lpofn->lpstrFile)); … … 1775 1775 { 1776 1776 return GetFileDialog95A(ofn, SAVE_DIALOG); 1777 } 1777 } 1778 1778 else 1779 1779 { … … 1811 1811 { 1812 1812 return GetFileDialog95W(ofn, SAVE_DIALOG); 1813 } 1813 } 1814 1814 else 1815 1815 { -
TabularUnified branches/gcc-kmk/src/comdlg32/filedlg95.c ¶
r21512 r21720 41 41 #include <heapstring.h> 42 42 #include <misc.h> 43 #include <win \shlwapi.h>43 #include <win/shlwapi.h> 44 44 45 45 #define MapHModuleSL(a) a … … 86 86 HIMAGELIST hImgList; 87 87 int m_iIndent; /* Indentation index */ 88 LPITEMIDLIST pidlItem; /* absolute pidl of the item */ 88 LPITEMIDLIST pidlItem; /* absolute pidl of the item */ 89 89 90 90 } SFOLDER,*LPSFOLDER; … … 216 216 * GetFileName95 217 217 * 218 * Creates an Open common dialog box that lets the user select 218 * Creates an Open common dialog box that lets the user select 219 219 * the drive, directory, and the name of a file or set of files to open. 220 220 * … … 251 251 return FALSE; 252 252 } 253 253 254 254 /* old style hook messages */ 255 255 if (IsHooked(fodInfos)) … … 260 260 fodInfos->HookMsg.sharevistring = RegisterWindowMessageA(SHAREVISTRINGA); 261 261 } 262 262 263 263 lRes = DialogBoxIndirectParamA(COMMDLG_hInstance32, 264 264 (LPDLGTEMPLATEA) template, … … 270 270 if( lRes == -1) 271 271 return FALSE; 272 272 273 273 return lRes; 274 274 } … … 291 291 LPSTR lpstrSavDir = NULL; 292 292 DWORD dwFlags = 0; 293 294 /* Initialise FileOpenDlgInfos structure*/ 293 294 /* Initialise FileOpenDlgInfos structure*/ 295 295 fodInfos = (FileOpenDlgInfos*)MemAlloc(sizeof(FileOpenDlgInfos)); 296 296 ZeroMemory(fodInfos, sizeof(FileOpenDlgInfos)); 297 297 298 298 /* Pass in the original ofn */ 299 299 fodInfos->ofnInfos = ofn; 300 300 301 301 /* Save original hInstance value */ 302 302 hInstance = ofn->hInstance; … … 316 316 fodInfos->DlgInfos.dwDlgProp = 0; 317 317 fodInfos->DlgInfos.hwndCustomDlg = (HWND)NULL; 318 318 319 319 switch(iDlgType) 320 320 { … … 400 400 FileOpenDlgInfos *fodInfos; 401 401 HINSTANCE hInstance; 402 402 403 403 /* out arguments */ 404 404 LPWSTR lpstrFile = NULL; … … 437 437 /* filter is a list... title\0ext\0......\0\0 */ 438 438 s = ofn->lpstrFilter; 439 439 440 440 while (*s) s = s+strlenW(s)+1; 441 441 s++; … … 528 528 } 529 529 #endif 530 530 531 531 /* restore saved IN arguments and convert OUT arguments back */ 532 532 ofn->Flags = dwFlags; … … 613 613 SetWindowPos(hwndParentDlg, 0, rectParent.left,rectParent.top, (rectParent.right- rectParent.left), 614 614 (rectParent.bottom-rectParent.top),SWP_NOMOVE | SWP_NOZORDER); 615 615 616 616 hwndChild = GetWindow(hwndChildDlg,GW_CHILD); 617 617 if(hwndStc32) … … 633 633 GetWindowRect(hwndChild,&rectCtrl); 634 634 MapWindowPoints( 0, hwndParentDlg,(LPPOINT)&rectCtrl,2); 635 635 636 636 /* 637 637 Check the initial position of the controls relative to the initial … … 651 651 rectCtrl.top += ptMoveCtl.y; 652 652 } 653 654 SetWindowPos( hwndChild, 0, rectCtrl.left, rectCtrl.top, 653 654 SetWindowPos( hwndChild, 0, rectCtrl.left, rectCtrl.top, 655 655 rectCtrl.right-rectCtrl.left,rectCtrl.bottom-rectCtrl.top, 656 656 SWP_NOSIZE | SWP_NOZORDER ); … … 659 659 } 660 660 hwndChild = GetWindow(hwndParentDlg,GW_CHILD); 661 661 662 662 if(hwndStc32) 663 663 { … … 680 680 rectCtrl.top += ptMoveCtl.y; 681 681 682 SetWindowPos( hwndChild, 0, rectCtrl.left, rectCtrl.top, 682 SetWindowPos( hwndChild, 0, rectCtrl.left, rectCtrl.top, 683 683 rectCtrl.right-rectCtrl.left,rectCtrl.bottom-rectCtrl.top, 684 684 SWP_NOSIZE |SWP_NOZORDER ); 685 685 } 686 686 } while ((hwndChild=GetWindow( hwndChild, GW_HWNDNEXT )) != (HWND)NULL); 687 } 687 } 688 688 } 689 689 } … … 701 701 { 702 702 case WM_INITDIALOG: 703 { 703 { 704 704 fodInfos = (FileOpenDlgInfos *)lParam; 705 705 lParam = (LPARAM) fodInfos->ofnInfos; … … 708 708 if(fodInfos && IsHooked(fodInfos)) 709 709 return CallWindowProcA((WNDPROC)fodInfos->ofnInfos->lpfnHook,hwnd,uMsg,wParam,lParam); 710 return 0; 711 } 710 return 0; 711 } 712 712 } 713 713 714 714 if(fodInfos && IsHooked(fodInfos)) 715 return CallWindowProcA((WNDPROC)fodInfos->ofnInfos->lpfnHook,hwnd,uMsg,wParam,lParam); 716 717 return DefWindowProcA(hwnd,uMsg,wParam,lParam); 715 return CallWindowProcA((WNDPROC)fodInfos->ofnInfos->lpfnHook,hwnd,uMsg,wParam,lParam); 716 717 return DefWindowProcA(hwnd,uMsg,wParam,lParam); 718 718 } 719 719 … … 757 757 if(hChildDlg) 758 758 { 759 ShowWindow(hChildDlg,SW_SHOW); 759 ShowWindow(hChildDlg,SW_SHOW); 760 760 return hChildDlg; 761 761 } … … 773 773 tmplate.cx = rectHwnd.right-rectHwnd.left; 774 774 tmplate.cy = rectHwnd.bottom-rectHwnd.top; 775 775 776 776 return CreateDialogIndirectParamA(fodInfos->ofnInfos->hInstance,&tmplate,hwnd,(DLGPROC)FileOpenDlgProcUserTemplate,(LPARAM)fodInfos); 777 777 } 778 778 return (HWND)NULL; 779 779 } 780 780 781 781 /*********************************************************************** 782 782 * SendCustomDlgNotificationMessage … … 830 830 GetDlgItemTextA(hwnd,IDC_FILENAME,lpstrPath, sizeof(lpstrPath)); 831 831 lpstrFileSpec = (LPSTR)PathFindFileNameA(lpstrPath); 832 if (lpstrFileSpec==lpstrPath) 832 if (lpstrFileSpec==lpstrPath) 833 833 { 834 834 char lpstrCurrentDir[MAX_PATH]; … … 838 838 snprintf((LPSTR)lParam,(int)wParam,"%s\\%s",lpstrCurrentDir,lpstrPath); 839 839 reqSize=strlen(lpstrCurrentDir)+1+strlen(lpstrPath)+1; 840 } 841 else 840 } 841 else 842 842 { 843 843 lstrcpynA((LPSTR)lParam,(LPSTR)lpstrPath,(int)wParam); … … 872 872 return TRUE; 873 873 } 874 874 875 875 /*********************************************************************** 876 876 * FileOpenDlgProc95 … … 883 883 TRACE("0x%04x 0x%04x\n", hwnd, uMsg); 884 884 #endif 885 885 886 886 switch(uMsg) 887 887 { … … 890 890 FileOpenDlgInfos * fodInfos = (FileOpenDlgInfos *)lParam; 891 891 892 /* Adds the FileOpenDlgInfos in the property list of the dialog 892 /* Adds the FileOpenDlgInfos in the property list of the dialog 893 893 so it will be easily accessible through a GetPropA(...) */ 894 894 SetPropA(hwnd, FileOpenDlgInfosStr, (HANDLE) fodInfos); 895 895 896 fodInfos->DlgInfos.hwndCustomDlg = 896 fodInfos->DlgInfos.hwndCustomDlg = 897 897 CreateTemplateDialog((FileOpenDlgInfos *)lParam, hwnd); 898 898 … … 917 917 } 918 918 return FALSE; 919 919 920 920 case WM_GETISHELLBROWSER: 921 921 return FILEDLG95_OnWMGetIShellBrowser(hwnd); … … 933 933 if(TTN_GETDISPINFOA == lpnmh->code ) 934 934 { 935 LPNMTTDISPINFOA lpdi = (LPNMTTDISPINFOA)lParam; 935 LPNMTTDISPINFOA lpdi = (LPNMTTDISPINFOA)lParam; 936 936 switch(lpnmh->idFrom ) 937 937 { … … 959 959 stringId = 0; 960 960 } 961 lpdi->hinst = COMMDLG_hInstance32; 961 lpdi->hinst = COMMDLG_hInstance32; 962 962 lpdi->lpszText = (LPSTR) stringId; 963 963 } … … 995 995 { COMDLG32_hInstance, 800 } // desktop icon 996 996 }; 997 997 998 998 RECT rectTB; 999 999 1000 1000 FileOpenDlgInfos *fodInfos = (FileOpenDlgInfos *) GetPropA(hwnd,FileOpenDlgInfosStr); 1001 1001 … … 1011 1011 MapWindowPoints( 0, hwnd,(LPPOINT)&rectTB,2); 1012 1012 1013 fodInfos->DlgInfos.hwndTB = CreateWindowExA(0, TOOLBARCLASSNAMEA, (LPSTR) NULL, 1013 fodInfos->DlgInfos.hwndTB = CreateWindowExA(0, TOOLBARCLASSNAMEA, (LPSTR) NULL, 1014 1014 WS_CHILD | WS_GROUP | TBSTYLE_TOOLTIPS | CCS_NODIVIDER | CCS_NORESIZE, 1015 0, 0, 150, 26, hwnd, (HMENU) IDC_TOOLBAR, COMMDLG_hInstance32, NULL); 1016 1017 SetWindowPos(fodInfos->DlgInfos.hwndTB, 0, 1015 0, 0, 150, 26, hwnd, (HMENU) IDC_TOOLBAR, COMMDLG_hInstance32, NULL); 1016 1017 SetWindowPos(fodInfos->DlgInfos.hwndTB, 0, 1018 1018 rectTB.left,rectTB.top, rectTB.right-rectTB.left, rectTB.bottom-rectTB.top, 1019 1019 SWP_SHOWWINDOW | SWP_NOACTIVATE | SWP_NOZORDER ); … … 1027 1027 1028 1028 SendMessageA(fodInfos->DlgInfos.hwndTB, TB_ADDBUTTONSA, (WPARAM) 9,(LPARAM) &tbb); 1029 SendMessageA(fodInfos->DlgInfos.hwndTB, TB_AUTOSIZE, 0, 0); 1029 SendMessageA(fodInfos->DlgInfos.hwndTB, TB_AUTOSIZE, 0, 0); 1030 1030 1031 1031 /* Set the window text with the text specified in the OPENFILENAME structure */ … … 1067 1067 are hidden and we are not using a custom template */ 1068 1068 if ( (fodInfos->ofnInfos->Flags & OFN_HIDEREADONLY) && 1069 (!(fodInfos->ofnInfos->Flags & 1069 (!(fodInfos->ofnInfos->Flags & 1070 1070 (OFN_SHOWHELP|OFN_ENABLETEMPLATE|OFN_ENABLETEMPLATEHANDLE)))) 1071 1071 { … … 1076 1076 /* subtract the height of the help button plus the space between 1077 1077 the help button and the cancel button to the height of the dialog */ 1078 SetWindowPos(hwnd, 0, 0, 0, rectDlg.right-rectDlg.left, 1079 (rectDlg.bottom-rectDlg.top) - (rectHelp.bottom - rectCancel.bottom), 1078 SetWindowPos(hwnd, 0, 0, 0, rectDlg.right-rectDlg.left, 1079 (rectDlg.bottom-rectDlg.top) - (rectHelp.bottom - rectCancel.bottom), 1080 1080 SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOZORDER); 1081 1081 } … … 1102 1102 FileOpenDlgInfos *fodInfos = (FileOpenDlgInfos *) lParam; 1103 1103 1104 TRACE("dir=%s file=%s\n", 1104 TRACE("dir=%s file=%s\n", 1105 1105 fodInfos->ofnInfos->lpstrInitialDir, fodInfos->ofnInfos->lpstrFile); 1106 1106 1107 1107 #ifdef __WIN32OS2__ 1108 /*@PF 1108 /*@PF 1109 1109 How can Wine miss this?? Very common situation for Windows apps! 1110 1110 If InitialDir is NULL and we have full blown path in lpstrFile we set … … 1112 1112 1113 1113 Q: What about Unicode? 1114 1114 1115 1115 */ 1116 1116 1117 if (fodInfos->ofnInfos->lpstrInitialDir == NULL && fodInfos->ofnInfos->lpstrFile && 1117 if (fodInfos->ofnInfos->lpstrInitialDir == NULL && fodInfos->ofnInfos->lpstrFile && 1118 1118 !PathIsRelativeA(fodInfos->ofnInfos->lpstrFile) && 1119 1119 PathGetDriveNumberA(fodInfos->ofnInfos->lpstrFile) != -1) 1120 1120 { 1121 dopstr = HEAP_strdupA(GetProcessHeap(), 0,fodInfos->ofnInfos->lpstrFile); 1121 dopstr = HEAP_strdupA(GetProcessHeap(), 0,fodInfos->ofnInfos->lpstrFile); 1122 1122 *strrchr(dopstr,'\\') = '\0'; 1123 1123 fodInfos->ofnInfos->lpstrInitialDir = dopstr; … … 1174 1174 fodInfos->ofnInfos->lpstrInitialDir = NULL; 1175 1175 HEAP_free(dopstr); 1176 } 1176 } 1177 1177 #endif 1178 1178 return TRUE; … … 1261 1261 /* Do not use the listview selection anymore */ 1262 1262 fodInfos->DlgInfos.dwDlgProp &= ~FODPROP_USEVIEW; 1263 return 0; 1263 return 0; 1264 1264 } 1265 1265 … … 1278 1278 SetWindowLongA(hwnd,DWL_MSGRESULT,(LONG)fodInfos->Shell.FOIShellBrowser); 1279 1279 1280 return TRUE; 1280 return TRUE; 1281 1281 } 1282 1282 … … 1284 1284 /*********************************************************************** 1285 1285 * FILEDLG95_OnOpenMultipleFiles 1286 * 1286 * 1287 1287 * Handles the opening of multiple files. 1288 1288 * … … 1301 1301 lpstrFile = fodInfos->ofnInfos->lpstrFile; 1302 1302 lpstrFile[0] = '\0'; 1303 1303 1304 1304 SHGetPathFromIDListA( fodInfos->ShellInfos.pidlAbsCurrent, lpstrPathSpec ); 1305 1305 … … 1307 1307 ( fodInfos->ofnInfos->Flags & OFN_FILEMUSTEXIST)) 1308 1308 { 1309 LPSTR lpstrTemp = lpstrFileList; 1309 LPSTR lpstrTemp = lpstrFileList; 1310 1310 1311 1311 for ( nCount = 0; nCount < nFileCount; nCount++ ) … … 1332 1332 return FALSE; 1333 1333 } 1334 1334 1335 1335 /* move to the next file in the list of files */ 1336 1336 lpstrTemp += strlen(lpstrTemp) + 1; … … 1355 1355 * 1356 1356 * Ok button WM_COMMAND message handler 1357 * 1357 * 1358 1358 * If the function succeeds, the return value is nonzero. 1359 1359 */ … … 1396 1396 return FALSE; 1397 1397 } 1398 1398 1399 1399 if(nFileCount > 1) 1400 1400 { … … 1455 1455 to a folder if the path points to a directory or the last 1456 1456 valid element is a directory. 1457 1457 1458 1458 valid variables: 1459 1459 lpstrPathAndFile: cleaned up path … … 1657 1657 { 1658 1658 LPSTR lpszTemp; 1659 1659 1660 1660 /* fill destination buffer */ 1661 1661 strcpy(fodInfos->ofnInfos->lpstrFile, lpstrPathAndFile); … … 1667 1667 lpszTemp = PathFindFileNameA(lpstrPathAndFile); 1668 1668 fodInfos->ofnInfos->nFileOffset = lpszTemp - lpstrPathAndFile; 1669 1669 1670 1670 /* set extension offset */ 1671 1671 lpszTemp = PathFindExtensionA(lpstrPathAndFile); 1672 1672 fodInfos->ofnInfos->nFileExtension = (*lpszTemp) ? lpszTemp - lpstrPathAndFile + 1 : 0; 1673 1673 1674 1674 /* set the lpstrFileTitle */ 1675 1675 if(fodInfos->ofnInfos->lpstrFileTitle) … … 1695 1695 } 1696 1696 } 1697 1697 1698 1698 TRACE("close\n"); 1699 1699 FILEDLG95_Clean(hwnd); … … 1728 1728 1729 1729 /* 1730 * Initialisation of the FileOpenDialogInfos structure 1730 * Initialisation of the FileOpenDialogInfos structure 1731 1731 */ 1732 1732 … … 1739 1739 if (!(fodInfos->ofnInfos->Flags & OFN_ALLOWMULTISELECT)) 1740 1740 { 1741 fodInfos->ShellInfos.folderSettings.fFlags |= FWF_SINGLESEL; 1741 fodInfos->ShellInfos.folderSettings.fFlags |= FWF_SINGLESEL; 1742 1742 } 1743 1743 fodInfos->ShellInfos.folderSettings.fFlags |= FWF_AUTOARRANGE | FWF_ALIGNLEFT; … … 1749 1749 1750 1750 /* Construct the IShellBrowser interface */ 1751 fodInfos->Shell.FOIShellBrowser = IShellBrowserImpl_Construct(hwnd); 1752 1751 fodInfos->Shell.FOIShellBrowser = IShellBrowserImpl_Construct(hwnd); 1752 1753 1753 return NOERROR; 1754 1754 } … … 1817 1817 LPITEMIDLIST pidl; 1818 1818 HRESULT hres; 1819 1819 1820 1820 TRACE("\n"); 1821 1821 … … 1850 1850 * FILEDLG95_FILETYPE_Init 1851 1851 * 1852 * Initialisation of the file type combo box 1852 * Initialisation of the file type combo box 1853 1853 */ 1854 1854 static HRESULT FILEDLG95_FILETYPE_Init(HWND hwnd) … … 1866 1866 for(;;) 1867 1867 { 1868 /* filter is a list... title\0ext\0......\0\0 1868 /* filter is a list... title\0ext\0......\0\0 1869 1869 * Set the combo item text to the title and the item data 1870 1870 * to the ext … … 1883 1883 strcpy(lpstrExt,lpstrPos); 1884 1884 lpstrPos += strlen(lpstrPos) + 1; 1885 1885 1886 1886 /* Add the item at the end of the combo */ 1887 1887 CBAddString(fodInfos->DlgInfos.hwndFileTypeCB, lpstrDisplay); … … 1894 1894 * FIXME: lpstrCustomFilter not handled at all 1895 1895 */ 1896 1896 1897 1897 /* set default filter index */ 1898 1898 if(fodInfos->ofnInfos->nFilterIndex == 0 && fodInfos->ofnInfos->lpstrCustomFilter == NULL) … … 1902 1902 if ( fodInfos->ofnInfos->nFilterIndex > nFilters ) 1903 1903 fodInfos->ofnInfos->nFilterIndex = nFilters; 1904 1904 1905 1905 /* Set the current index selection. */ 1906 1906 CBSetCurSel(fodInfos->DlgInfos.hwndFileTypeCB, fodInfos->ofnInfos->nFilterIndex-1); 1907 1907 1908 1908 /* Get the corresponding text string from the combo box. */ 1909 1909 lpstrFilter = (LPSTR) CBGetItemDataPtr(fodInfos->DlgInfos.hwndFileTypeCB, … … 1911 1911 1912 1912 if ((INT)lpstrFilter == CB_ERR) /* control is empty */ 1913 lpstrFilter = NULL; 1913 lpstrFilter = NULL; 1914 1914 1915 1915 if(lpstrFilter) … … 2020 2020 2021 2021 } 2022 2022 2023 2023 /*********************************************************************** 2024 2024 * FILEDLG95_LOOKIN_Init 2025 2025 * 2026 * Initialisation of the look in combo box 2026 * Initialisation of the look in combo box 2027 2027 */ 2028 2028 static HRESULT FILEDLG95_LOOKIN_Init(HWND hwndCombo) … … 2127 2127 { 2128 2128 ilItemImage = (HIMAGELIST) SHGetFileInfoA ((LPCSTR) tmpFolder->pidlItem, 2129 0, 2130 &sfi, 2131 sizeof (SHFILEINFOA), 2132 SHGFI_PIDL | SHGFI_SMALLICON | 2133 SHGFI_OPENICON | SHGFI_SYSICONINDEX | 2134 SHGFI_DISPLAYNAME ); 2129 0, 2130 &sfi, 2131 sizeof (SHFILEINFOA), 2132 SHGFI_PIDL | SHGFI_SMALLICON | 2133 SHGFI_OPENICON | SHGFI_SYSICONINDEX | 2134 SHGFI_DISPLAYNAME ); 2135 2135 } 2136 2136 else 2137 2137 { 2138 2138 ilItemImage = (HIMAGELIST) SHGetFileInfoA ((LPCSTR) tmpFolder->pidlItem, 2139 0, 2140 &sfi, 2139 0, 2140 &sfi, 2141 2141 sizeof (SHFILEINFOA), 2142 SHGFI_PIDL | SHGFI_SMALLICON | 2143 SHGFI_SYSICONINDEX | 2142 SHGFI_PIDL | SHGFI_SMALLICON | 2143 SHGFI_SYSICONINDEX | 2144 2144 SHGFI_DISPLAYNAME); 2145 2145 } … … 2164 2164 iIndentation = 0; 2165 2165 ilItemImage = (HIMAGELIST) SHGetFileInfoA ((LPCSTR) tmpFolder->pidlItem, 2166 0, 2167 &sfi, 2168 sizeof (SHFILEINFOA), 2169 SHGFI_PIDL | SHGFI_SMALLICON | SHGFI_OPENICON 2166 0, 2167 &sfi, 2168 sizeof (SHFILEINFOA), 2169 SHGFI_PIDL | SHGFI_SMALLICON | SHGFI_OPENICON 2170 2170 | SHGFI_SYSICONINDEX | SHGFI_DISPLAYNAME ); 2171 2171 … … 2191 2191 rectText.bottom = 2192 2192 (pDIStruct->rcItem.top + pDIStruct->rcItem.bottom + tm.tmHeight) / 2; 2193 2193 2194 2194 /* Draw the icon from the image list */ 2195 2195 ImageList_Draw(ilItemImage, 2196 2196 sfi.iIcon, 2197 pDIStruct->hDC, 2198 rectIcon.left, 2199 rectIcon.top, 2200 ILD_TRANSPARENT ); 2197 pDIStruct->hDC, 2198 rectIcon.left, 2199 rectIcon.top, 2200 ILD_TRANSPARENT ); 2201 2201 2202 2202 /* Draw the associated text */ … … 2225 2225 { 2226 2226 LPSFOLDER tmpFolder; 2227 int iItem; 2227 int iItem; 2228 2228 2229 2229 iItem = CBGetCurSel(fodInfos->DlgInfos.hwndLookInCB); … … 2242 2242 break; 2243 2243 } 2244 2244 2245 2245 } 2246 2246 return FALSE; … … 2267 2267 if(!(liInfos = (LookInInfos *)GetPropA(hwnd,LookInInfosStr))) 2268 2268 return -1; 2269 2269 2270 2270 tmpFolder = MemAlloc(sizeof(SFOLDER)); 2271 2271 tmpFolder->m_iIndent = 0; … … 2282 2282 if(tmpFolder->m_iIndent > liInfos->iMaxIndentation) 2283 2283 liInfos->iMaxIndentation = tmpFolder->m_iIndent; 2284 2284 2285 2285 sfi.dwAttributes = SFGAO_FILESYSANCESTOR | SFGAO_FILESYSTEM; 2286 2286 SHGetFileInfoA((LPSTR)pidl, … … 2288 2288 &sfi, 2289 2289 sizeof(sfi), 2290 SHGFI_DISPLAYNAME | SHGFI_SYSICONINDEX 2290 SHGFI_DISPLAYNAME | SHGFI_SYSICONINDEX 2291 2291 | SHGFI_PIDL | SHGFI_SMALLICON | SHGFI_ATTRIBUTES | SHGFI_ATTR_SPECIFIED); 2292 2292 … … 2296 2296 { 2297 2297 int iItemID; 2298 2298 2299 2299 TRACE("-- Add %s at %u\n", sfi.szDisplayName, tmpFolder->m_iIndent); 2300 2300 … … 2322 2322 * FILEDLG95_LOOKIN_InsertItemAfterParent 2323 2323 * 2324 * Insert an item below its parent 2324 * Insert an item below its parent 2325 2325 */ 2326 2326 static int FILEDLG95_LOOKIN_InsertItemAfterParent(HWND hwnd,LPITEMIDLIST pidl) 2327 2327 { 2328 2328 2329 2329 LPITEMIDLIST pidlParent = GetParentPidl(pidl); 2330 2330 int iParentPos; … … 2381 2381 } 2382 2382 } 2383 2383 2384 2384 CBSetCurSel(hwnd,iItemPos); 2385 2385 liInfos->uSelectedItem = iItemPos; … … 2503 2503 { 2504 2504 pidl = GetPidlFromDataObject( fodInfos->Shell.FOIDataObject, nFileToOpen+1 ); 2505 2505 2506 2506 if (pidl) 2507 2507 { … … 2621 2621 2622 2622 TRACE("nStrLen=%u str=%s\n", nStrLen, lpstrEdit); 2623 2623 2624 2624 /* we might get single filename without any '"', 2625 2625 * so we need nStrLen + terminating \0 + end-of-list \0 */ … … 2642 2642 (*sizeUsed)++; 2643 2643 nFileCount++; 2644 } 2644 } 2645 2645 nStrCharCount++; 2646 2646 } … … 2703 2703 LPITEMIDLIST GetPidlFromDataObject ( IDataObject *doSelected, UINT nPidlIndex) 2704 2704 { 2705 2705 2706 2706 STGMEDIUM medium; 2707 2707 FORMATETC formatetc; 2708 2708 LPITEMIDLIST pidl = NULL; 2709 2709 2710 2710 TRACE("sv=%p index=%u\n", doSelected, nPidlIndex); 2711 2711 2712 2712 /* Set the FORMATETC structure*/ 2713 2713 SETDefFormatEtc(formatetc, RegisterClipboardFormatA(CFSTR_SHELLIDLIST), TYMED_HGLOBAL); … … 2763 2763 * GetName 2764 2764 * 2765 * Get the pidl's display name (relative to folder) and 2765 * Get the pidl's display name (relative to folder) and 2766 2766 * put it in lpstrFileName. 2767 * 2767 * 2768 2768 * Return NOERROR on success, 2769 2769 * E_FAIL otherwise … … 2797 2797 * GetShellFolderFromPidl 2798 2798 * 2799 * pidlRel is the item pidl relative 2799 * pidlRel is the item pidl relative 2800 2800 * Return the IShellFolder of the absolute pidl 2801 2801 */ … … 2833 2833 2834 2834 TRACE("%p\n", pidl); 2835 2835 2836 2836 pidlParent = COMDLG32_PIDL_ILClone(pidl); 2837 2837 COMDLG32_PIDL_ILRemoveLastID(pidlParent); 2838 2838 2839 2839 return pidlParent; 2840 2840 } … … 2843 2843 * GetPidlFromName 2844 2844 * 2845 * returns the pidl of the file name relative to folder 2845 * returns the pidl of the file name relative to folder 2846 2846 * NULL if an error occurred 2847 2847 */ … … 2857 2857 if(!*lpcstrFileName) return NULL; 2858 2858 2859 MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,lpcstrFileName,-1,(LPWSTR)lpwstrDirName,MAX_PATH); 2859 MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,lpcstrFileName,-1,(LPWSTR)lpwstrDirName,MAX_PATH); 2860 2860 2861 2861 if(!lpsf) … … 2867 2867 else 2868 2868 { 2869 IShellFolder_ParseDisplayName(lpsf, 0, NULL, (LPWSTR)lpwstrDirName, &ulEaten, &pidl, NULL); 2869 IShellFolder_ParseDisplayName(lpsf, 0, NULL, (LPWSTR)lpwstrDirName, &ulEaten, &pidl, NULL); 2870 2870 } 2871 2871 return pidl; … … 2878 2878 ULONG uAttr = SFGAO_FOLDER | SFGAO_HASSUBFOLDER; 2879 2879 HRESULT ret; 2880 2880 2881 2881 TRACE("%p, %p\n", psf, pidl); 2882 2882 … … 2919 2919 2920 2920 return bBrowseSelFolder; 2921 } 2921 } 2922 2922 2923 2923 /* -
TabularUnified branches/gcc-kmk/src/crtdll/old/crtdll.cpp ¶
r4667 r21720 3 3 /* 4 4 * The C RunTime DLL 5 * 5 * 6 6 * Implements C run-time functionality as known from UNIX. 7 7 * 8 * TODO: 8 * TODO: 9 9 * - Check setjmp(3) 10 10 * - fix *ALL* functions for the FS: wrapper problem … … 39 39 40 40 #include <math.h> 41 #include <libc \locale.h>41 #include <libc/locale.h> 42 42 #include <signal.h> 43 43 #include <io.h> … … 53 53 #include <heap.h> 54 54 #include <errno.h> 55 #include <sys \utime.h>56 #include <sys \timeb.h>57 #include <sys \stat.h>55 #include <sys/utime.h> 56 #include <sys/timeb.h> 57 #include <sys/stat.h> 58 58 #include "signal.h" 59 59 … … 80 80 { 81 81 FS_OS2 82 82 83 83 if (fdwReason == DLL_PROCESS_ATTACH) { 84 84 _fdopen(0,"r"); … … 92 92 CRTDLL_hHeap = 0; 93 93 } 94 94 95 95 FS_WIN32 96 96 return TRUE; … … 410 410 */ 411 411 int * CDECL CRTDLL___doserrno() 412 { 412 { 413 413 dprintf2(("CRTDLL: __doserrno\n")); 414 414 return (__doserrno()); … … 525 525 */ 526 526 void CDECL CRTDLL__beep(unsigned nFreq, unsigned nDur) 527 { 527 { 528 528 dprintf2(("_beep\n")); 529 529 Beep(nFreq,nDur); … … 693 693 { 694 694 dprintf2(("CRTDLL: _close\n")); 695 695 696 696 return CloseHandle(handle); 697 697 } … … 832 832 */ 833 833 INT CDECL CRTDLL__except_handler2 ( PEXCEPTION_RECORD rec, 834 PEXCEPTION_FRAME frame, PCONTEXT context, 834 PEXCEPTION_FRAME frame, PCONTEXT context, 835 835 PEXCEPTION_FRAME *dispatcher) 836 836 { … … 1483 1483 DWORD access = 0, creation = 0; 1484 1484 HFILE ret; 1485 1485 1486 1486 switch(flags & 3) 1487 1487 { … … 1509 1509 if (flags & 0x0008) /* O_APPEND */ 1510 1510 dprintf2(("O_APPEND not supported\n" )); 1511 if (flags & 0xf0f4) 1511 if (flags & 0xf0f4) 1512 1512 dprintf2(("CRTDLL_open file unsupported flags 0x%04x\n",flags)); 1513 1513 /* End Fixme */ … … 1527 1527 dprintf2(("CRTDLL: _open_osfhandle\n")); 1528 1528 HFILE handle; 1529 1529 1530 1530 switch (osfhandle) { 1531 1531 case STD_INPUT_HANDLE : … … 1633 1633 return -1; 1634 1634 } 1635 errno = saved_errno; 1636 if (j == 1 && c == '\n') 1635 errno = saved_errno; 1636 if (j == 1 && c == '\n') 1637 1637 { 1638 1638 dst[0] = '\n'; … … 1773 1773 * _sleep (CRTDLL.265) 1774 1774 */ 1775 VOID CDECL CRTDLL__sleep(unsigned long timeout) 1775 VOID CDECL CRTDLL__sleep(unsigned long timeout) 1776 1776 { 1777 1777 dprintf2(("_sleep for %ld milliseconds\n",timeout)); … … 1927 1927 return (_tempnam(dir, prefix)); 1928 1928 } 1929 1929 1930 1930 1931 1931 /********************************************************************* … … 1992 1992 return EOF; 1993 1993 } 1994 1994 1995 1995 ret=unlink(full_name.long_name); 1996 1996 dprintf2(("(%s unix %s)\n", … … 2216 2216 int left, right, median, sign; 2217 2217 const void *element; 2218 2218 2219 2219 if (width == 0) 2220 2220 return 0; … … 2507 2507 } 2508 2508 2509 2509 2510 2510 /********************************************************************* 2511 2511 * free (CRTDLL.375) … … 2773 2773 * ldexp (CRTDLL.417) 2774 2774 */ 2775 double CDECL CRTDLL_ldexp( double x, int exp ) 2775 double CDECL CRTDLL_ldexp( double x, int exp ) 2776 2776 { 2777 2777 dprintf2(("CRTDLL: ldexp\n")); … … 2783 2783 * ldiv (CRTDLL.418) 2784 2784 */ 2785 ldiv_t CDECL CRTDLL_ldiv( long int numer, long int denom ) 2785 ldiv_t CDECL CRTDLL_ldiv( long int numer, long int denom ) 2786 2786 { 2787 2787 dprintf2(("CRTDLL: ldiv\n")); … … 2883 2883 * pow (CRTDLL.436) 2884 2884 */ 2885 double CDECL CRTDLL_pow( double x, double y ) 2885 double CDECL CRTDLL_pow( double x, double y ) 2886 2886 { 2887 2887 dprintf2(("CRTDLL: pow(%08xh, %08xh)\n",x, y)); … … 3015 3015 * setbuf (CRTDLL.449) 3016 3016 */ 3017 void CDECL CRTDLL_setbuf( FILE *fp, char *buf ) 3017 void CDECL CRTDLL_setbuf( FILE *fp, char *buf ) 3018 3018 { 3019 3019 dprintf2(("CRTDLL: setbuf\n")); … … 3178 3178 } 3179 3179 3180 3180 3181 3181 /********************************************************************* 3182 3182 * tmpnam (CRTDLL.487) -
TabularUnified branches/gcc-kmk/src/crypt32/decode.c ¶
r21354 r21720 48 48 #include "winnls.h" 49 49 #include "snmp.h" 50 #include "wine \debug.h"51 #include "wine \exception.h"50 #include "wine/debug.h" 51 #include "wine/exception.h" 52 52 #include "crypt32_private.h" 53 53 … … 784 784 BYTE lenBytes = GET_LEN_BYTES(pbEncoded[1]); 785 785 DWORD bytesNeeded = sizeof(CRYPT_DER_BLOB); 786 786 787 787 if (!(dwFlags & CRYPT_DECODE_NOCOPY_FLAG)) 788 788 bytesNeeded += 1 + lenBytes + dataLen; … … 1562 1562 1563 1563 value->Value.cbData = MultiByteToWideChar(CP_UTF8, 0, 1564 (LPCSTR)pbEncoded + 1 + lenBytes, dataLen, 1564 (LPCSTR)pbEncoded + 1 + lenBytes, dataLen, 1565 1565 str, bytesNeeded - sizeof(CERT_NAME_VALUE)) * 2; 1566 1566 break; … … 2741 2741 offsetof(CRYPT_ALGORITHM_IDENTIFIER, pszObjId), 0 }, 2742 2742 { 0, offsetof(CRYPT_ALGORITHM_IDENTIFIER, Parameters), 2743 CRYPT_AsnDecodeCopyBytes, sizeof(CRYPT_OBJID_BLOB), TRUE, TRUE, 2743 CRYPT_AsnDecodeCopyBytes, sizeof(CRYPT_OBJID_BLOB), TRUE, TRUE, 2744 2744 offsetof(CRYPT_ALGORITHM_IDENTIFIER, Parameters.pbData), 0 }, 2745 2745 }; … … 3421 3421 struct AsnDecodeSequenceItem items[] = { 3422 3422 { ASN_BITSTRING, offsetof(CERT_BASIC_CONSTRAINTS_INFO, SubjectType), 3423 CRYPT_AsnDecodeBitsInternal, sizeof(CRYPT_BIT_BLOB), FALSE, TRUE, 3423 CRYPT_AsnDecodeBitsInternal, sizeof(CRYPT_BIT_BLOB), FALSE, TRUE, 3424 3424 offsetof(CERT_BASIC_CONSTRAINTS_INFO, SubjectType.pbData), 0 }, 3425 3425 { ASN_INTEGER, offsetof(CERT_BASIC_CONSTRAINTS_INFO, -
TabularUnified branches/gcc-kmk/src/custombuild/guid.c ¶
r21494 r21720 10 10 #include "shlobj.h" 11 11 #include "docobj.h" 12 #include ".. \shell32\shellfolder.h"12 #include "../shell32/shellfolder.h" 13 13 14 14 #include "wine/obj_inplace.h" … … 19 19 #include "wine/obj_clientserver.h" 20 20 #include "wine/obj_cache.h" 21 #include "wine \obj_oleaut.h"22 #include "wine \obj_olefont.h"21 #include "wine/obj_oleaut.h" 22 #include "wine/obj_olefont.h" 23 23 24 24 #include "wine/obj_oleview.h" … … 138 138 (*pSid)->SubAuthority[7] = nSubAuthority7; 139 139 140 if(pIdentifierAuthority) 140 if(pIdentifierAuthority) 141 141 memcpy((PVOID)&(*pSid)->IdentifierAuthority, (PVOID)pIdentifierAuthority, sizeof(SID_IDENTIFIER_AUTHORITY)); 142 142 return TRUE; -
TabularUnified branches/gcc-kmk/src/driverdll/testdrv.cpp ¶
r6646 r21720 23 23 #include <win32api.h> 24 24 #include <misc.h> 25 #include <win \winioctl.h>25 #include <win/winioctl.h> 26 26 27 27 #define TESTDRV_CATEGORY 0x40 -
TabularUnified branches/gcc-kmk/src/gdi32/font.cpp ¶
r10612 r21720 36 36 #include "unicode.h" 37 37 #include <heapstring.h> 38 #include <win \options.h>38 #include <win/options.h> 39 39 #include <wprocess.h> 40 40 #include <odininst.h> -
TabularUnified branches/gcc-kmk/src/guidlib/guid.c ¶
r21494 r21720 12 12 #include "olectl.h" 13 13 #include "dinput.h" 14 //#include ".. \shell32\shellfolder.h"14 //#include "../shell32/shellfolder.h" 15 15 16 16 #include "wine/obj_inplace.h" -
TabularUnified branches/gcc-kmk/src/iphlpapi/iphlwrap.h ¶
r7973 r21720 2 2 #define __IPHLWRAP_H__ 3 3 4 #include <sys \socket.h>5 #include <sys \ioctl.h>4 #include <sys/socket.h> 5 #include <sys/ioctl.h> 6 6 #include <netdb.h> 7 #include <netinet \in.h>8 #include <netinet \tcp.h>7 #include <netinet/in.h> 8 #include <netinet/tcp.h> 9 9 #include <nerrno.h> 10 10 … … 34 34 35 35 return yyrc; 36 } 36 } 37 37 38 38 #undef ioctl … … 48 48 49 49 return yyrc; 50 } 50 } 51 51 #undef res_init 52 52 #define res_init _res_init … … 61 61 62 62 return yyrc; 63 } 63 } 64 64 65 65 #undef sock_init … … 75 75 76 76 return yyrc; 77 } 77 } 78 78 79 79 #undef sock_errno … … 86 86 psock_errno(a); 87 87 SetFS(sel); 88 } 88 } 89 89 90 90 #undef psock_errno … … 100 100 101 101 return yyrc; 102 } 102 } 103 103 104 104 #undef socket … … 114 114 115 115 return yyrc; 116 } 116 } 117 117 118 118 #undef soclose … … 128 128 129 129 return yyrc; 130 } 130 } 131 131 132 132 #undef so_cancel … … 142 142 143 143 return yyrc; 144 } 144 } 145 145 146 146 #undef gethostname … … 156 156 157 157 return yyrc; 158 } 158 } 159 159 160 160 #undef gethostbyname … … 170 170 171 171 return yyrc; 172 } 172 } 173 173 174 174 #undef gethostbyaddr 175 175 #define gethostbyaddr _gethostbyaddr 176 176 177 #endif 177 #endif 178 178 179 179 -
TabularUnified branches/gcc-kmk/src/kernel32/HandleManager.cpp ¶
r21717 r21720 70 70 71 71 #include <vmutex.h> 72 #include <win \thread.h>72 #include <win/thread.h> 73 73 74 74 #include <odinapi.h> -
TabularUnified branches/gcc-kmk/src/kernel32/char.cpp ¶
r7886 r21720 26 26 27 27 #include <misc.h> 28 #include <wine \unicode.h>28 #include <wine/unicode.h> 29 29 30 30 -
TabularUnified branches/gcc-kmk/src/kernel32/directory.cpp ¶
r21302 r21720 6 6 * Copyright 1998 Sander van Leeuwen 7 7 * 8 * NOTE: Directory creation has to be done in install program (odin\win) 8 * NOTE: Directory creation has to be done in install program (odin\win) 9 9 * 10 10 * Parts based on Wine code (991031) (files\directory.c) … … 14 14 * Copyright 1995 Alexandre Julliard 15 15 * 16 * TODO: 16 * TODO: 17 17 * - System/window directories should be created by install program! 18 18 * … … 34 34 #include <options.h> 35 35 #include "initterm.h" 36 #include <win \file.h>36 #include <win/file.h> 37 37 #include <string.h> 38 38 #include "oslibdos.h" … … 80 80 len = strlen(DIR_System); 81 81 if(DIR_System[len-1] == '\\') { 82 DIR_System[len-1] = 0; 82 DIR_System[len-1] = 0; 83 83 } 84 84 len = PROFILE_GetOdinIniString(ODINDIRECTORIES,"WINDOWS","",DIR_Windows,sizeof(DIR_Windows)); 85 85 if (len > 2) { 86 86 if(DIR_Windows[len-1] == '\\') { 87 DIR_Windows[len-1] = 0; 87 DIR_Windows[len-1] = 0; 88 88 } 89 89 } … … 116 116 len = strlen(DIR_System); 117 117 if(DIR_System[len-1] == '\\') { 118 DIR_System[len-1] = 0; 118 DIR_System[len-1] = 0; 119 119 } 120 120 strcpy(DIR_Windows, szWindowsDir); 121 121 len = strlen(DIR_Windows); 122 122 if(DIR_Windows[len-1] == '\\') { 123 DIR_Windows[len-1] = 0; 123 DIR_Windows[len-1] = 0; 124 124 } 125 125 … … 146 146 rc = OSLibDosQueryDir(nBufferLength, lpBuffer); 147 147 if(rc && rc < nBufferLength) { 148 dprintf(("CurrentDirectory = %s (%d)", lpBuffer, rc)); 149 } 150 else dprintf(("CurrentDirectory returned %d", rc)); 148 dprintf(("CurrentDirectory = %s (%d)", lpBuffer, rc)); 149 } 150 else dprintf(("CurrentDirectory returned %d", rc)); 151 151 return rc; 152 152 } … … 196 196 return FALSE; 197 197 } 198 198 199 199 // cut off trailing backslashes 200 200 // not if a process wants to change to the root directory … … 264 264 265 265 int len = strlen(lpstrDirectory); 266 266 267 267 // cut off trailing backslashes 268 268 if ( (lpstrDirectory[len - 1] == '\\') || … … 275 275 lpstrDirectory = lpTemp; 276 276 } 277 277 278 278 dprintf(("CreateDirectoryA %s", lpstrDirectory)); 279 279 280 280 // Creation of an existing directory will fail (verified in NT4 & XP) 281 281 DWORD dwAttr = GetFileAttributesA(lpstrDirectory); 282 if(dwAttr != -1) 282 if(dwAttr != -1) 283 283 { 284 284 if (dwAttr & FILE_ATTRIBUTE_DIRECTORY) … … 287 287 return FALSE; 288 288 } 289 } 289 } 290 290 return(OSLibDosCreateDirectory(lpstrDirectory)); 291 291 } … … 437 437 asciibuffer = (char *)alloca(uSize+1); 438 438 439 if(lpBuffer && asciibuffer == NULL) 439 if(lpBuffer && asciibuffer == NULL) 440 440 { 441 441 DebugInt3(); … … 445 445 if(rc && asciibuffer) 446 446 AsciiToUnicode(asciibuffer, lpBuffer); 447 447 448 448 return(rc); 449 449 } … … 495 495 asciibuffer = (char *)alloca(uSize+1); 496 496 497 if(lpBuffer && asciibuffer == NULL) 497 if(lpBuffer && asciibuffer == NULL) 498 498 { 499 499 DebugInt3(); … … 503 503 if(rc && asciibuffer) 504 504 AsciiToUnicode(asciibuffer, lpBuffer); 505 505 506 506 return(rc); 507 507 } … … 524 524 { 525 525 int len = strlen(lpstrDirectory); 526 526 527 527 if(lpstrDirectory == NULL) { 528 528 SetLastError(ERROR_INVALID_PARAMETER); … … 539 539 lpstrDirectory = lpTemp; 540 540 } 541 541 542 542 dprintf(("RemoveDirectory %s", lpstrDirectory)); 543 543 … … 619 619 those (according to SDK docs) */ 620 620 if ((path != NULL) && strchr(path, ';')) { 621 ret = OSLibDosSearchPath(OSLIB_SEARCHDIR, (LPSTR)path, (LPSTR)name, 621 ret = OSLibDosSearchPath(OSLIB_SEARCHDIR, (LPSTR)path, (LPSTR)name, 622 622 full_name, MAX_PATHNAME_LEN); 623 623 goto done; … … 647 647 name = tmp; 648 648 } 649 649 650 650 /* If we have an explicit path, everything's easy */ 651 651 … … 704 704 * filename is returned. 705 705 * Failure: Zero 706 * 706 * 707 707 * NOTES 708 708 * Should call SetLastError(but currently doesn't). … … 732 732 LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name ); 733 733 LPSTR extA = HEAP_strdupWtoA( GetProcessHeap(), 0, ext ); 734 734 735 735 dprintf(("SearchPathA %s %s %s", pathA, nameA, extA)); 736 736 DWORD ret = DIR_SearchPath( pathA, nameA, extA, (LPSTR)full_name ); 737 737 738 738 if (NULL != extA) 739 739 HeapFree( GetProcessHeap(), 0, extA ); 740 740 741 741 if (NULL != nameA) 742 742 HeapFree( GetProcessHeap(), 0, nameA ); 743 743 744 744 if (NULL != pathA) 745 745 HeapFree( GetProcessHeap(), 0, pathA ); 746 746 747 747 if (!ret) return 0; 748 748 -
TabularUnified branches/gcc-kmk/src/kernel32/heapstring.cpp ¶
r21361 r21720 27 27 #include <wcstr.h> 28 28 #include "heap.h" 29 #include <wine \unicode.h>29 #include <wine/unicode.h> 30 30 #include "misc.h" 31 31 #include "codepage.h" -
TabularUnified branches/gcc-kmk/src/kernel32/hmdevio.cpp ¶
r21302 r21720 25 25 #include <win32api.h> 26 26 #include <misc.h> 27 #include <win \winioctl.h>27 #include <win/winioctl.h> 28 28 #include "hmdevio.h" 29 29 #include "exceptutil.h" … … 47 47 DWORD rc; 48 48 49 for(int i=0;i<nrKnownDrivers;i++) 49 for(int i=0;i<nrKnownDrivers;i++) 50 50 { 51 51 driver = new HMDeviceDriver(knownDriver[i].szWin32Name, … … 101 101 if (rc != NO_ERROR) /* check for errors */ 102 102 dprintf(("KERNEL32:RegisterDevices: registering %s failed with %u.\n", szDrvName, rc)); 103 103 104 104 // @@@PH 105 105 // there should be an symbolic link: … … 109 109 rc = 0; 110 110 } 111 } 111 } 112 112 RegCloseKey(hkDrivers); 113 113 } … … 117 117 //****************************************************************************** 118 118 //****************************************************************************** 119 BOOL WIN32API RegisterCustomDriver(PFNDRVOPEN pfnDriverOpen, PFNDRVCLOSE pfnDriverClose, 119 BOOL WIN32API RegisterCustomDriver(PFNDRVOPEN pfnDriverOpen, PFNDRVCLOSE pfnDriverClose, 120 120 PFNDRVIOCTL pfnDriverIOCtl, PFNDRVREAD pfnDriverRead, 121 121 PFNDRVWRITE pfnDriverWrite, PFNDRVCANCELIO pfnDriverCancelIo, … … 141 141 //****************************************************************************** 142 142 //****************************************************************************** 143 HMDeviceDriver::HMDeviceDriver(LPCSTR lpDeviceName, LPSTR lpOS2DevName, BOOL fCreate, 143 HMDeviceDriver::HMDeviceDriver(LPCSTR lpDeviceName, LPSTR lpOS2DevName, BOOL fCreate, 144 144 WINIOCTL pDevIOCtl) 145 145 : HMDeviceHandler(lpDeviceName) … … 215 215 dprintf(("DosOpen %s returned %d\n", szOS2Name, rc)); 216 216 217 if(rc == NO_ERROR) 217 if(rc == NO_ERROR) 218 218 { 219 219 pHMHandleData->hHMHandle = hfFileHandle; 220 220 return (NO_ERROR); 221 221 } 222 else 222 else 223 223 return(error2WinError(rc)); 224 224 } … … 259 259 //****************************************************************************** 260 260 //****************************************************************************** 261 HMCustomDriver::HMCustomDriver(PFNDRVOPEN pfnDriverOpen, PFNDRVCLOSE pfnDriverClose, 261 HMCustomDriver::HMCustomDriver(PFNDRVOPEN pfnDriverOpen, PFNDRVCLOSE pfnDriverClose, 262 262 PFNDRVIOCTL pfnDriverIOCtl, PFNDRVREAD pfnDriverRead, 263 263 PFNDRVWRITE pfnDriverWrite, PFNDRVCANCELIO pfnDriverCancelIo, … … 461 461 return FALSE; 462 462 } 463 return pfnDriverGetOverlappedResult(lpDriverData, pHMHandleData->hHMHandle, pHMHandleData->dwFlags, 463 return pfnDriverGetOverlappedResult(lpDriverData, pHMHandleData->hHMHandle, pHMHandleData->dwFlags, 464 464 lpOverlapped, lpcbTransfer, fWait, (LPVOID)pHMHandleData->dwUserData); 465 465 } -
TabularUnified branches/gcc-kmk/src/kernel32/hmdisk.cpp ¶
r9911 r21720 18 18 #include "hmdisk.h" 19 19 #include "mmap.h" 20 #include <win \winioctl.h>21 #include <win \ntddscsi.h>22 #include <win \wnaspi32.h>20 #include <win/winioctl.h> 21 #include <win/ntddscsi.h> 22 #include <win/wnaspi32.h> 23 23 #include "oslibdos.h" 24 24 #include "osliblvm.h" … … 43 43 typedef struct 44 44 { 45 BOOL fCDIoSupported; 45 BOOL fCDIoSupported; 46 46 ULONG driveLetter; 47 47 ULONG driveType; … … 163 163 szDrive[2] = '\0'; 164 164 165 //if volume name, query 166 if(!strncmp(lpFileName, VOLUME_NAME_PREFIX, sizeof(VOLUME_NAME_PREFIX)-1)) 165 //if volume name, query 166 if(!strncmp(lpFileName, VOLUME_NAME_PREFIX, sizeof(VOLUME_NAME_PREFIX)-1)) 167 167 { 168 168 int length; … … 171 171 return ERROR_FILE_NOT_FOUND; //not allowed 172 172 } 173 if(OSLibLVMStripVolumeName(lpFileName, szVolumeName, sizeof(szVolumeName))) 173 if(OSLibLVMStripVolumeName(lpFileName, szVolumeName, sizeof(szVolumeName))) 174 174 { 175 175 BOOL fLVMVolume; … … 184 184 return ERROR_FILE_NOT_FOUND; //not found 185 185 } 186 if(szDrive[0] == 0) 186 if(szDrive[0] == 0) 187 187 { 188 188 //volume isn't mounted 189 189 190 190 //Note: this only works on Warp 4.5 and up 191 sprintf(szDiskName, "\\\\.\\Physical_Disk%d", volext.Extents[0].DiskNumber+1); 191 sprintf(szDiskName, "\\\\.\\Physical_Disk%d", volext.Extents[0].DiskNumber+1); 192 192 fPhysicalDisk = TRUE; 193 193 dwPhysicalDiskNr = volext.Extents[0].DiskNumber + 1; … … 211 211 else return ERROR_FILE_NOT_FOUND; 212 212 } 213 else 214 if(strncmp(lpFileName, "\\\\.\\PHYSICALDRIVE", 17) == 0) 213 else 214 if(strncmp(lpFileName, "\\\\.\\PHYSICALDRIVE", 17) == 0) 215 215 { 216 216 if(!fPhysicalDiskAccess) { … … 304 304 drvInfo->fLocked = FALSE; 305 305 306 //save volume start & length if volume must be accessed through the physical disk 306 //save volume start & length if volume must be accessed through the physical disk 307 307 //(no other choice for unmounted volumes) 308 308 drvInfo->fPhysicalDisk = fPhysicalDisk; … … 348 348 if(pHMHandleData->hHMHandle && drvInfo->dwShare == 0) { 349 349 dprintf(("Locking drive")); 350 if(OSLibDosDevIOCtl(pHMHandleData->hHMHandle,IOCTL_DISK,DSK_LOCKDRIVE,0,0,0,0,0,0)) 350 if(OSLibDosDevIOCtl(pHMHandleData->hHMHandle,IOCTL_DISK,DSK_LOCKDRIVE,0,0,0,0,0,0)) 351 351 { 352 352 dprintf(("Sharing violation while attempting to lock the drive")); … … 411 411 if(hFile && drvInfo->dwShare == 0) { 412 412 dprintf(("Locking drive")); 413 if(OSLibDosDevIOCtl(hFile,IOCTL_DISK,DSK_LOCKDRIVE,0,0,0,0,0,0)) 413 if(OSLibDosDevIOCtl(hFile,IOCTL_DISK,DSK_LOCKDRIVE,0,0,0,0,0,0)) 414 414 { 415 415 dprintf(("Sharing violation while attempting to lock the drive")); … … 890 890 //label has changed 891 891 //TODO: Find better way to determine if floppy was removed or switched 892 if(drvInfo->driveType != DRIVE_FIXED) 892 if(drvInfo->driveType != DRIVE_FIXED) 893 893 { 894 894 rc = OSLibDosQueryVolumeSerialAndName(1 + drvInfo->driveLetter - 'A', &volumelabel, NULL, 0); … … 1439 1439 return (ret == ERROR_SUCCESS); 1440 1440 } 1441 1441 1442 1442 case IOCTL_CDROM_RAW_READ: 1443 1443 { 1444 1444 #pragma pack(1) 1445 struct 1445 struct 1446 1446 { 1447 1447 ULONG ID_code; … … 1497 1497 1498 1498 if(lpBytesReturned) { 1499 *lpBytesReturned = dwDataSize; 1499 *lpBytesReturned = dwDataSize; 1500 1500 } 1501 1501 … … 1633 1633 case IOCTL_SCSI_GET_CAPABILITIES: 1634 1634 { 1635 PIO_SCSI_CAPABILITIES pPacket = (PIO_SCSI_CAPABILITIES)lpOutBuffer; 1635 PIO_SCSI_CAPABILITIES pPacket = (PIO_SCSI_CAPABILITIES)lpOutBuffer; 1636 1636 1637 1637 if(nOutBufferSize < sizeof(IO_SCSI_CAPABILITIES) || … … 1677 1677 return FALSE; 1678 1678 } 1679 1679 1680 1680 if(!drvInfo || drvInfo->fCDIoSupported == FALSE) { 1681 1681 dprintf(("os2cdrom.dmd CD interface not supported!!")); … … 1842 1842 if((nNumberOfBytesToRead+offset) & 0xfff) 1843 1843 nrpages++; 1844 1844 1845 1845 map->commitRange((ULONG)lpBuffer, offset & ~0xfff, TRUE, nrpages); 1846 1846 map->Release(); … … 2106 2106 if((nNumberOfBytesToWrite+offset) & 0xfff) 2107 2107 nrpages++; 2108 2108 2109 2109 map->commitRange((ULONG)lpBuffer, offset & ~0xfff, TRUE, nrpages); 2110 2110 map->Release(); … … 2202 2202 2203 2203 dprintf2(("KERNEL32: HMDeviceDiskClass::GetFileSize %s(%08xh,%08xh)\n", 2204 lpHMDeviceName, pHMHandleData, lpdwFileSizeHigh)); 2204 lpHMDeviceName, pHMHandleData, lpdwFileSizeHigh)); 2205 2205 2206 2206 //If we didn't get an OS/2 handle for the disk before, get one now -
TabularUnified branches/gcc-kmk/src/kernel32/hmthread.cpp ¶
r21457 r21720 34 34 #include "oslibmem.h" 35 35 36 #include <win \thread.h>36 #include <win/thread.h> 37 37 #include "thread.h" 38 38 #include "asmutil.h" … … 65 65 HANDLE hThread = pHMHandleData->hHMHandle; 66 66 67 if(lpIDThread == NULL) { 67 if(lpIDThread == NULL) { 68 68 lpIDThread = &threadid; 69 69 } … … 124 124 125 125 *lpIDThread = MAKE_THREADID(O32_GetCurrentProcessId(), *lpIDThread); 126 126 127 127 TEB *teb = GetTEBFromThreadHandle(hThread); 128 128 if(teb) { … … 134 134 135 135 dprintf(("CreateThread created %08x, id %x", pHMHandleData->hHMHandle, *lpIDThread)); 136 136 137 137 return pHMHandleData->hHMHandle; 138 138 } … … 603 603 pHMHandleData->hHMHandle, 604 604 dwTimeout)); 605 605 606 606 //This doesn't work very well in Open32 (object's state never signaled) 607 607 if(threadobj && threadobj->dwState == THREAD_TERMINATED) { -
TabularUnified branches/gcc-kmk/src/kernel32/lang.cpp ¶
r21302 r21720 19 19 #include <odinwrap.h> 20 20 #include <heapstring.h> 21 #include <win \winreg.h>21 #include <win/winreg.h> 22 22 #include <winos2def.h> 23 23 #include "unicode.h" -
TabularUnified branches/gcc-kmk/src/kernel32/mmap.cpp ¶
r21716 r21720 28 28 #include <stdlib.h> 29 29 #include <string.h> 30 #include <win \virtual.h>30 #include <win/virtual.h> 31 31 #include <odincrt.h> 32 32 #include <handlemanager.h> -
TabularUnified branches/gcc-kmk/src/kernel32/mmapdup.cpp ¶
r21716 r21720 28 28 #include <stdlib.h> 29 29 #include <string.h> 30 #include <win \virtual.h>30 #include <win/virtual.h> 31 31 #include <odincrt.h> 32 32 #include <handlemanager.h> … … 35 35 #include "oslibmem.h" 36 36 #include "winimagepeldr.h" 37 #include <custombuild.h> 37 #include <custombuild.h> 38 38 39 39 #define DBG_LOCALLOG DBG_mmapdup … … 48 48 // 49 49 //****************************************************************************** 50 Win32MemMapDup::Win32MemMapDup(Win32MemMap *parent, HANDLE hFile, ULONG size, 50 Win32MemMapDup::Win32MemMapDup(Win32MemMap *parent, HANDLE hFile, ULONG size, 51 51 ULONG fdwProtect, LPSTR lpszName) : 52 52 Win32MemMap(hFile, size, fdwProtect, lpszName) … … 123 123 if((fdwAccess & FILE_MAP_READ) && !(mProtFlags & (PAGE_READWRITE|PAGE_READONLY))) 124 124 goto parmfail; 125 125 126 126 if (fdwAccess != FILE_MAP_ALL_ACCESS) 127 127 if((fdwAccess & FILE_MAP_COPY) && !(mProtFlags & PAGE_WRITECOPY)) … … 222 222 BOOL Win32MemMapDup::commitPage(ULONG ulFaultAddr, ULONG offset, BOOL fWriteAccess, int nrpages) 223 223 { 224 if(mProtFlags & PAGE_WRITECOPY) 224 if(mProtFlags & PAGE_WRITECOPY) 225 225 {//this is a COW map, call commitGuardPage 226 226 return commitGuardPage(ulFaultAddr, offset, fWriteAccess); … … 245 245 // 246 246 //****************************************************************************** 247 BOOL Win32MemMapDup::commitGuardPage(ULONG ulFaultAddr, ULONG ulOffset, 247 BOOL Win32MemMapDup::commitGuardPage(ULONG ulFaultAddr, ULONG ulOffset, 248 248 BOOL fWriteAccess) 249 249 { -
TabularUnified branches/gcc-kmk/src/kernel32/mmapnotify.cpp ¶
r21716 r21720 6 6 * Calls notification handler when an exception occurs in the memory range of 7 7 * the map. 8 * 8 * 9 9 * Copyright 2003 Sander van Leeuwen (sandervl@innotek.de) 10 10 * … … 16 16 #include <stdlib.h> 17 17 #include <string.h> 18 #include <win \virtual.h>18 #include <win/virtual.h> 19 19 #include <odincrt.h> 20 20 #include <handlemanager.h> … … 23 23 #include "oslibmem.h" 24 24 #include "winimagepeldr.h" 25 #include <custombuild.h> 25 #include <custombuild.h> 26 26 #include <memmap.h> 27 27 … … 128 128 // Win32MemMapNotify::findMapByView 129 129 // 130 // Find the map of the view that contains the specified starting address 130 // Find the map of the view that contains the specified starting address 131 131 // and has the specified access type 132 132 // -
TabularUnified branches/gcc-kmk/src/kernel32/mmapview.cpp ¶
r21716 r21720 28 28 #include <stdlib.h> 29 29 #include <string.h> 30 #include <win \virtual.h>30 #include <win/virtual.h> 31 31 #include <odincrt.h> 32 32 #include <handlemanager.h> … … 35 35 #include "oslibmem.h" 36 36 #include "winimagepeldr.h" 37 #include <custombuild.h> 37 #include <custombuild.h> 38 38 39 39 #define DBG_LOCALLOG DBG_mmapview … … 51 51 // 52 52 //****************************************************************************** 53 Win32MemMapView::Win32MemMapView(Win32MemMap *map, ULONG offset, ULONG size, 53 Win32MemMapView::Win32MemMapView(Win32MemMap *map, ULONG offset, ULONG size, 54 54 ULONG fdwAccess, Win32MemMap *owner) 55 55 { … … 87 87 { 88 88 //shared memory map, so map it into our address space 89 if(OSLibDosGetNamedSharedMem((LPVOID *)&viewaddr, map->getMemName()) != OSLIB_NOERROR) 89 if(OSLibDosGetNamedSharedMem((LPVOID *)&viewaddr, map->getMemName()) != OSLIB_NOERROR) 90 90 { 91 91 dprintf(("new OSLibDosGetNamedSharedMem FAILED")); … … 104 104 } 105 105 else { 106 if(mfAccess & MEMMAP_ACCESS_COPYONWRITE) 106 if(mfAccess & MEMMAP_ACCESS_COPYONWRITE) 107 107 { 108 108 //A copy on write view is a private copy of the memory map … … 118 118 } 119 119 } 120 else 120 else 121 121 if(OSLibDosAliasMem(viewaddr, size, &pMapView, accessAttr) != OSLIB_NOERROR) { 122 122 dprintf(("new OSLibDosAliasMem FAILED")); … … 126 126 } 127 127 } 128 //Allocate bitmap for all pages of a COW view to track which pages are 128 //Allocate bitmap for all pages of a COW view to track which pages are 129 129 //shared and which are private (copy on write -> private page) 130 if(fdwAccess == FILE_MAP_COPY) 130 if(fdwAccess == FILE_MAP_COPY) 131 131 { 132 132 DWORD nrPages = mSize >> PAGE_SHIFT; … … 242 242 viewpagestart = mOffset >> PAGE_SHIFT; 243 243 nrviewpages = mSize >> PAGE_SHIFT; 244 if(mSize & 0xFFF) 244 if(mSize & 0xFFF) 245 245 nrviewpages++; 246 246 … … 248 248 return; //outside this view 249 249 } 250 if(startpage + nrpages > viewpagestart + nrviewpages) { 250 if(startpage + nrpages > viewpagestart + nrviewpages) { 251 251 nrpages -= ((startpage + nrpages) - (viewpagestart + nrviewpages)); 252 252 } … … 286 286 } 287 287 288 if( ( (mfAccess & MEMMAP_ACCESS_COPYONWRITE) && (flags != PAGEVIEW_GUARD) ) || 289 ( (flags == PAGEVIEW_GUARD) && !(mfAccess & MEMMAP_ACCESS_COPYONWRITE) ) ) 288 if( ( (mfAccess & MEMMAP_ACCESS_COPYONWRITE) && (flags != PAGEVIEW_GUARD) ) || 289 ( (flags == PAGEVIEW_GUARD) && !(mfAccess & MEMMAP_ACCESS_COPYONWRITE) ) ) 290 290 { 291 291 //PAGEVIEW_GUARD only applies to COW views 292 292 //PAGEVIEW_VIEW/READONLY does not apply to COW views 293 return TRUE; 293 return TRUE; 294 294 } 295 295 if(mOffset + mSize <= offset || mOffset >= offset + size) { … … 320 320 } 321 321 322 if(flags == PAGEVIEW_GUARD || (mfAccess & MEMMAP_ACCESS_COPYONWRITE)) 322 if(flags == PAGEVIEW_GUARD || (mfAccess & MEMMAP_ACCESS_COPYONWRITE)) 323 323 { 324 324 DWORD startpage = (offset - mOffset) >> PAGE_SHIFT; … … 330 330 //of the COW pages, then only the shared pages must be changed. 331 331 //So check each page if it is still shared. 332 for(int i=startpage;i<startpage+nrPages;i++) 332 for(int i=startpage;i<startpage+nrPages;i++) 333 333 { 334 if(!isCOWPage(i)) 334 if(!isCOWPage(i)) 335 335 {//page is still shared, so set the guard flag 336 336 rc = OSLibDosSetMem((char *)pMapView+(offset - mOffset), PAGE_SIZE, accessAttr); … … 354 354 //****************************************************************************** 355 355 //****************************************************************************** 356 int Win32MemMapView::findViews(Win32MemMap *map, int nrViews, 356 int Win32MemMapView::findViews(Win32MemMap *map, int nrViews, 357 357 Win32MemMapView *viewarray[]) 358 358 { … … 362 362 Win32MemMapView *view = mapviews, *nextview; 363 363 364 if(view != NULL) 364 if(view != NULL) 365 365 { 366 while(view && i < nrViews) 366 while(view && i < nrViews) 367 367 { 368 368 if(view->getParentMap() == map) … … 384 384 Win32MemMapView *view = mapviews, *nextview; 385 385 386 if(view != NULL) 386 if(view != NULL) 387 387 { 388 while(view) 388 while(view) 389 389 { 390 390 nextview = view->next; … … 404 404 // Win32MemMap::findMapByView 405 405 // 406 // Find the map of the view that contains the specified starting address 406 // Find the map of the view that contains the specified starting address 407 407 // and has the specified access type 408 408 // -
TabularUnified branches/gcc-kmk/src/kernel32/osliblvm.cpp ¶
r21583 r21720 21 21 #include <win32type.h> 22 22 #include <winconst.h> 23 #include <win \winioctl.h>23 #include <win/winioctl.h> 24 24 #include "osliblvm.h" 25 25 … … 89 89 rc = DosQueryProcAddr(hModLVM, 0, "Write_Sectors", (PFN *)&pfnWrite_Sectors); 90 90 if(rc) goto fail; 91 91 92 92 return TRUE; 93 93 … … 267 267 Volume_Control_Array *volctrl; 268 268 CARDINAL32 lasterror; 269 269 270 270 if(!hModLVM) { 271 271 dprintf(("LVM dll not loaded -> fail")); … … 310 310 //****************************************************************************** 311 311 //****************************************************************************** 312 BOOL OSLibLVMQueryVolumeName(HANDLE hVolumeControlData, ULONG *pVolIndex, 312 BOOL OSLibLVMQueryVolumeName(HANDLE hVolumeControlData, ULONG *pVolIndex, 313 313 LPSTR lpszVolumeName, DWORD cchBufferLength) 314 314 { … … 346 346 static Volume_Information_Record OSLibLVMFindVolumeByDriveLetter(ULONG driveLetter, 347 347 Volume_Control_Record *pVolRec, 348 CARDINAL32 *lasterror) 348 CARDINAL32 *lasterror) 349 349 { 350 350 Volume_Control_Array *volctrl; … … 384 384 static Volume_Information_Record OSLibLVMFindVolumeByName(LPSTR pszVolName, 385 385 Volume_Control_Record *pVolRec, 386 CARDINAL32 *lasterror) 386 CARDINAL32 *lasterror) 387 387 { 388 388 Volume_Control_Array *volctrl; … … 564 564 // - -1 if volume wasn't found 565 565 // - 0 if volume is present, but not mounted 566 // 566 // 567 567 //****************************************************************************** 568 568 CHAR OSLibLVMQueryDriveFromVolumeName(LPCSTR lpszVolume) … … 596 596 //****************************************************************************** 597 597 //****************************************************************************** 598 DWORD OSLibLVMQueryVolumeSerialAndName(LPSTR lpszVolume, LPDWORD lpVolumeSerialNumber, 598 DWORD OSLibLVMQueryVolumeSerialAndName(LPSTR lpszVolume, LPDWORD lpVolumeSerialNumber, 599 599 LPSTR lpVolumeNameBuffer, DWORD nVolumeNameSize) 600 600 { … … 621 621 //****************************************************************************** 622 622 //****************************************************************************** 623 BOOL OSLibLVMGetVolumeNameForVolumeMountPoint(LPCSTR lpszVolumeMountPoint, 624 LPSTR lpszVolumeName, 623 BOOL OSLibLVMGetVolumeNameForVolumeMountPoint(LPCSTR lpszVolumeMountPoint, 624 LPSTR lpszVolumeName, 625 625 DWORD cchBufferLength) 626 626 { … … 665 665 strncpy(lpszOS2VolumeName, &lpszWin32VolumeName[sizeof(VOLUME_NAME_PREFIX)-1+1], cchBufferLength-1); //-zero term + starting '{' 666 666 length -= sizeof(VOLUME_NAME_PREFIX)-1+1; 667 if(lpszOS2VolumeName[length-2] == '}') 667 if(lpszOS2VolumeName[length-2] == '}') 668 668 { 669 669 lpszOS2VolumeName[length-2] = 0; … … 671 671 } 672 672 else 673 if(lpszOS2VolumeName[length-1] == '}') 673 if(lpszOS2VolumeName[length-1] == '}') 674 674 { 675 675 lpszOS2VolumeName[length-1] = 0; -
TabularUnified branches/gcc-kmk/src/kernel32/osliblvm.h ¶
r9693 r21720 15 15 #endif 16 16 17 #include <win \winioctl.h>17 #include <win/winioctl.h> 18 18 19 19 #ifdef OS2_INCLUDED … … 30 30 typedef unsigned long LBA; 31 31 32 /* Define a Partition Sector Number. A Partition Sector Number is 33 relative to the start of a partition. The first sector in a partition 32 /* Define a Partition Sector Number. A Partition Sector Number is 33 relative to the start of a partition. The first sector in a partition 34 34 is PSN 0. */ 35 35 typedef unsigned long PSN; … … 330 330 HANDLE OSLibLVMQueryVolumeControlData(); 331 331 void OSLibLVMFreeVolumeControlData(HANDLE hVolumeControlData); 332 BOOL OSLibLVMQueryVolumeName(HANDLE hVolumeControlData, ULONG *pVolIndex, 332 BOOL OSLibLVMQueryVolumeName(HANDLE hVolumeControlData, ULONG *pVolIndex, 333 333 LPSTR lpszVolumeName, DWORD cchBufferLength); 334 334 … … 338 338 ULONG OSLibLVMGetDriveType(LPCSTR lpszVolume); 339 339 CHAR OSLibLVMQueryDriveFromVolumeName(LPCSTR lpszVolume); 340 BOOL OSLibLVMGetVolumeNameForVolumeMountPoint(LPCSTR lpszVolumeMountPoint, LPSTR lpszVolumeName, 340 BOOL OSLibLVMGetVolumeNameForVolumeMountPoint(LPCSTR lpszVolumeMountPoint, LPSTR lpszVolumeName, 341 341 DWORD cchBufferLength); 342 342 -
TabularUnified branches/gcc-kmk/src/kernel32/oslibmem.cpp ¶
r21711 r21720 31 31 #include <win32api.h> 32 32 #include <winconst.h> 33 #include <win \winioctl.h>33 #include <win/winioctl.h> 34 34 #include <dbglog.h> 35 35 #include <vmutex.h> -
TabularUnified branches/gcc-kmk/src/kernel32/process.cpp ¶
r21716 r21720 27 27 #include <misc.h> 28 28 #include <wprocess.h> 29 #include <win \task.h>29 #include <win/task.h> 30 30 #include "winimagebase.h" 31 31 #include "oslibdos.h" … … 151 151 * GetProcessHeaps [KERNEL32.376] 152 152 */ 153 DWORD WINAPI GetProcessHeaps(DWORD nrofheaps,HANDLE *heaps) 153 DWORD WINAPI GetProcessHeaps(DWORD nrofheaps,HANDLE *heaps) 154 154 { 155 155 dprintf(("GetProcessHeaps: (%ld,%p), incomplete implementation.\n",nrofheaps,heaps)); … … 310 310 if ( !process ) return 0; 311 311 312 switch ( offset ) 312 switch ( offset ) 313 313 { 314 314 case GPD_APP_COMPAT_FLAGS: … … 379 379 380 380 /*********************************************************************** 381 * ODIN_SetProcessDword 381 * ODIN_SetProcessDword 382 382 * 383 383 * SvL: Special version that allows the caller to change some values … … 391 391 if ( !process ) return; 392 392 393 switch ( offset ) 393 switch ( offset ) 394 394 { 395 395 case GPD_STARTF_SHOWWINDOW: … … 424 424 if ( !process ) return; 425 425 426 switch ( offset ) 426 switch ( offset ) 427 427 { 428 428 case GPD_APP_COMPAT_FLAGS: … … 444 444 445 445 case GPD_USERDATA: 446 process->process_dword = value; 446 process->process_dword = value; 447 447 break; 448 448 … … 488 488 if(!NtdllRtlExtendedIntegerMultiply) { 489 489 HINSTANCE hInstance = LoadLibraryA("NTDLL.DLL"); 490 if(hInstance) 490 if(hInstance) 491 491 *(VOID **)&NtdllRtlExtendedIntegerMultiply=(void*)GetProcAddress(hInstance, (LPCSTR)"RtlExtendedIntegerMultiply"); 492 492 } -
TabularUnified branches/gcc-kmk/src/kernel32/virtual.cpp ¶
r21675 r21720 23 23 #include <stdlib.h> 24 24 #include <string.h> 25 #include <win \virtual.h>26 #include <win \thread.h>25 #include <win/virtual.h> 26 #include <win/thread.h> 27 27 #include <heapstring.h> 28 28 #include <handlemanager.h> -
TabularUnified branches/gcc-kmk/src/kernel32/winimagebase.cpp ¶
r21716 r21720 38 38 #include "initterm.h" 39 39 #include "directory.h" 40 #include <win \virtual.h>40 #include <win/virtual.h> 41 41 #include <winconst.h> 42 42 -
TabularUnified branches/gcc-kmk/src/kernel32/winimagebase.h ¶
r10397 r21720 20 20 #include <winconst.h> 21 21 #else 22 #include <win \winnls.h>22 #include <win/winnls.h> 23 23 #endif 24 24 -
TabularUnified branches/gcc-kmk/src/kernel32/winimagelx.cpp ¶
r21716 r21720 42 42 #include "oslibmisc.h" 43 43 #include "initterm.h" 44 #include <win \virtual.h>44 #include <win/virtual.h> 45 45 46 46 #define DBG_LOCALLOG DBG_winimagelx -
TabularUnified branches/gcc-kmk/src/kernel32/winimagepeldr.cpp ¶
r21355 r21720 56 56 #include "oslibmisc.h" 57 57 #include "initterm.h" 58 #include <win \virtual.h>58 #include <win/virtual.h> 59 59 #include "oslibdos.h" 60 60 #include "oslibmem.h" -
TabularUnified branches/gcc-kmk/src/kernel32/wprocess.cpp ¶
r21673 r21720 52 52 #include "shellapi.h" 53 53 54 #include <win \ntddk.h>55 #include <win \psapi.h>54 #include <win/ntddk.h> 55 #include <win/psapi.h> 56 56 57 57 #include <custombuild.h> -
TabularUnified branches/gcc-kmk/src/msvcrt/time.c ¶
r21395 r21720 25 25 #include <unistd.h> 26 26 #include <time.h> 27 #include <sys \times.h>27 #include <sys/times.h> 28 28 #else 29 29 #include "config.h" -
TabularUnified branches/gcc-kmk/src/oleaut32/libgif/dgif_lib.c ¶
r10266 r21720 16 16 #include <alloc.h> 17 17 #include <stdlib.h> 18 #include <sys \stat.h>18 #include <sys/stat.h> 19 19 #else 20 20 #include <sys/types.h> … … 332 332 333 333 GifFile->Image.ColorMap = MakeMapObject(1 << BitsPerPixel, NULL); 334 334 335 335 /* Get the image local color map: */ 336 336 for (i = 0; i < GifFile->Image.ColorMap->ColorCount; i++) { … … 918 918 * the GifFileType pointer. Call DGifOpenFileName() or DGifOpenFileHandle() * 919 919 * first to initialize I/O. Its inverse is EGifSpew(). * 920 * 920 * 921 921 ******************************************************************************/ 922 922 int DGifSlurp(GifFileType *GifFile) … … 930 930 temp_save.ExtensionBlocks=NULL; 931 931 temp_save.ExtensionBlockCount=0; 932 932 933 933 do { 934 934 if (DGifGetRecordType(GifFile, &RecordType) == GIF_ERROR) … … 971 971 return(GIF_ERROR); 972 972 while (ExtData != NULL) { 973 973 974 974 /* Create an extension block with our data */ 975 975 if (AddExtensionBlock(&temp_save, ExtData[0], &ExtData[1]) 976 976 == GIF_ERROR) 977 return (GIF_ERROR); 978 977 return (GIF_ERROR); 978 979 979 if (DGifGetExtensionNext(GifFile, &ExtData) == GIF_ERROR) 980 980 return(GIF_ERROR); … … 998 998 if (temp_save.ExtensionBlocks) 999 999 FreeExtension(&temp_save); 1000 1000 1001 1001 return(GIF_OK); 1002 1002 } -
TabularUnified branches/gcc-kmk/src/oleaut32/libgif/egif_lib.c ¶
r10266 r21720 15 15 #include <io.h> 16 16 #include <alloc.h> 17 #include <sys \stat.h>17 #include <sys/stat.h> 18 18 #else 19 19 #include <sys/types.h> … … 137 137 Private->File = f; 138 138 Private->FileState = FILE_STATE_WRITE; 139 139 140 140 Private->Write = (OutputFunc)0; /* No user write routine (MRB) */ 141 141 GifFile->UserData = (VoidPtr)0; /* No user write handle (MRB) */ 142 142 143 143 _GifError = 0; 144 144 … … 173 173 Private->File = (FILE *)0; 174 174 Private->FileState = FILE_STATE_WRITE; 175 175 176 176 Private->Write = writeFunc; /* User write routine (MRB) */ 177 177 GifFile->UserData = userData; /* User write handle (MRB) */ 178 178 179 179 _GifError = 0; 180 180 … … 825 825 if (sp->RasterBits == NULL) 826 826 continue; 827 827 828 828 if (sp->ExtensionBlocks) 829 829 { -
TabularUnified branches/gcc-kmk/src/oleaut32/libgif/gif_hash.c ¶
r10266 r21720 20 20 #include <io.h> 21 21 #include <alloc.h> 22 #include <sys \stat.h>22 #include <sys/stat.h> 23 23 #else 24 24 #include <sys/types.h> -
TabularUnified branches/gcc-kmk/src/opengl/glide/sst1/init/init.c ¶
r6653 r21720 45 45 #endif 46 46 47 #include "init96 \init96.h"47 #include "init96/init96.h" 48 48 #include <sst1init.h> 49 49 -
TabularUnified branches/gcc-kmk/src/opengl/glide/sst1/init/vg96drvr.c ¶
r6653 r21720 28 28 #include <sst1vid.h> 29 29 #include "init.h" 30 #include "init96 \init96.h"30 #include "init96/init96.h" 31 31 #include "fxinit.h" 32 32 -
TabularUnified branches/gcc-kmk/src/opengl/glut/glut_init.c ¶
r3579 r21720 17 17 #if defined(__WIN32OS2__) 18 18 #include <windows.h> 19 #include "GL \gl.h"19 #include "GL/gl.h" 20 20 #undef WH_NB_HOOKS /* Get rid of copiler warning... */ 21 21 #endif -
TabularUnified branches/gcc-kmk/src/opengl/glut/glutos2.h ¶
r3579 r21720 15 15 */ 16 16 #define gettimeofday gettimeofday_os2 17 #include <sys \time.h>17 #include <sys/time.h> 18 18 #undef gettimeofday 19 19 -
TabularUnified branches/gcc-kmk/src/opengl/mesa/mesadive.c ¶
r4859 r21720 13 13 14 14 #include <os2wrap.h> 15 #include ".. \..\ddraw\divewrap.h"15 #include "../../ddraw/divewrap.h" 16 16 #include <memory.h> 17 17 #include <malloc.h> -
TabularUnified branches/gcc-kmk/src/opengl/mesa/osmesa.c ¶
r3598 r21720 1201 1201 1202 1202 #ifdef WIN32 1203 #include ".. \linetemp.h"1203 #include "../linetemp.h" 1204 1204 #else 1205 1205 #include "linetemp.h" … … 1231 1231 1232 1232 #ifdef WIN32 1233 #include ".. \linetemp.h"1233 #include "../linetemp.h" 1234 1234 #else 1235 1235 #include "linetemp.h" … … 1268 1268 1269 1269 #ifdef WIN32 1270 #include ".. \linetemp.h"1270 #include "../linetemp.h" 1271 1271 #else 1272 1272 #include "linetemp.h" … … 1308 1308 1309 1309 #ifdef WIN32 1310 #include ".. \linetemp.h"1310 #include "../linetemp.h" 1311 1311 #else 1312 1312 #include "linetemp.h" … … 1349 1349 1350 1350 #ifdef WIN32 1351 #include ".. \linetemp.h"1351 #include "../linetemp.h" 1352 1352 #else 1353 1353 #include "linetemp.h" … … 1493 1493 } 1494 1494 #ifdef WIN32 1495 #include ".. \tritemp.h"1495 #include "../tritemp.h" 1496 1496 #else 1497 1497 #include "tritemp.h" … … 1532 1532 } 1533 1533 #ifdef WIN32 1534 #include ".. \tritemp.h"1534 #include "../tritemp.h" 1535 1535 #else 1536 1536 #include "tritemp.h" … … 1703 1703 1704 1704 #ifdef WIN32 1705 #include ".. \linetemp.h"1705 #include "../linetemp.h" 1706 1706 #else 1707 1707 #include "linetemp.h" … … 1741 1741 } 1742 1742 #ifdef WIN32 1743 #include ".. \tritemp.h"1743 #include "../tritemp.h" 1744 1744 #else 1745 1745 #include "tritemp.h" -
TabularUnified branches/gcc-kmk/src/opengl/mesa/wmesa.c ¶
r3598 r21720 2344 2344 2345 2345 #ifdef WIN32 2346 #include ".. \tritemp.h"2346 #include "../tritemp.h" 2347 2347 #else 2348 2348 #include "tritemp.h" … … 2386 2386 2387 2387 #ifdef WIN32 2388 #include ".. \tritemp.h"2388 #include "../tritemp.h" 2389 2389 #else 2390 2390 #include "tritemp.h" … … 2429 2429 2430 2430 #ifdef WIN32 2431 #include ".. \tritemp.h"2431 #include "../tritemp.h" 2432 2432 #else 2433 2433 #include "tritemp.h" … … 2469 2469 2470 2470 #ifdef WIN32 2471 #include ".. \tritemp.h"2471 #include "../tritemp.h" 2472 2472 #else 2473 2473 #include "tritemp.h" … … 2510 2510 2511 2511 #ifdef WIN32 2512 #include ".. \tritemp.h"2512 #include "../tritemp.h" 2513 2513 #else 2514 2514 #include "tritemp.h" … … 2551 2551 2552 2552 #ifdef WIN32 2553 #include ".. \tritemp.h"2553 #include "../tritemp.h" 2554 2554 #else 2555 2555 #include "tritemp.h" … … 2586 2586 2587 2587 #ifdef WIN32 2588 #include ".. \tritemp.h"2588 #include "../tritemp.h" 2589 2589 #else 2590 2590 #include "tritemp.h" … … 2621 2621 2622 2622 #ifdef WIN32 2623 #include ".. \tritemp.h"2623 #include "../tritemp.h" 2624 2624 #else 2625 2625 #include "tritemp.h" … … 2656 2656 2657 2657 #ifdef WIN32 2658 #include ".. \tritemp.h"2658 #include "../tritemp.h" 2659 2659 #else 2660 2660 #include "tritemp.h" … … 2693 2693 2694 2694 #ifdef WIN32 2695 #include ".. \tritemp.h"2695 #include "../tritemp.h" 2696 2696 #else 2697 2697 #include "tritemp.h" … … 2728 2728 2729 2729 #ifdef WIN32 2730 #include ".. \tritemp.h"2730 #include "../tritemp.h" 2731 2731 #else 2732 2732 #include "tritemp.h" … … 2763 2763 2764 2764 #ifdef WIN32 2765 #include ".. \tritemp.h"2765 #include "../tritemp.h" 2766 2766 #else 2767 2767 #include "tritemp.h" … … 2803 2803 2804 2804 #ifdef WIN32 2805 #include ".. \tritemp.h"2805 #include "../tritemp.h" 2806 2806 #else 2807 2807 #include "tritemp.h" … … 2844 2844 2845 2845 #ifdef WIN32 2846 #include ".. \tritemp.h"2846 #include "../tritemp.h" 2847 2847 #else 2848 2848 #include "tritemp.h" … … 2881 2881 2882 2882 #ifdef WIN32 2883 #include ".. \tritemp.h"2883 #include "../tritemp.h" 2884 2884 #else 2885 2885 #include "tritemp.h" … … 2917 2917 2918 2918 #ifdef WIN32 2919 #include ".. \tritemp.h"2919 #include "../tritemp.h" 2920 2920 #else 2921 2921 #include "tritemp.h" … … 2959 2959 2960 2960 #ifdef WIN32 2961 #include ".. \tritemp.h"2961 #include "../tritemp.h" 2962 2962 #else 2963 2963 #include "tritemp.h" … … 2999 2999 3000 3000 #ifdef WIN32 3001 #include ".. \tritemp.h"3001 #include "../tritemp.h" 3002 3002 #else 3003 3003 #include "tritemp.h" … … 3033 3033 3034 3034 #ifdef WIN32 3035 #include ".. \tritemp.h"3035 #include "../tritemp.h" 3036 3036 #else 3037 3037 #include "tritemp.h" … … 3068 3068 3069 3069 #ifdef WIN32 3070 #include ".. \tritemp.h"3070 #include "../tritemp.h" 3071 3071 #else 3072 3072 #include "tritemp.h" -
TabularUnified branches/gcc-kmk/src/peldr/pe.cpp ¶
r21580 r21720 7 7 * 8 8 * Command line options: 9 * /OPT:[x1=y,x2=z,..] 9 * /OPT:[x1=y,x2=z,..] 10 10 * x = CURDIR -> set current directory to y 11 11 * (not other options available at this time) … … 31 31 #include <misc.h> 32 32 #include <wprocess.h> 33 #include <win \peexe.h>33 #include <win/peexe.h> 34 34 #include <odinpe.h> 35 35 #include "pe.h" … … 100 100 int nrTries = 1; 101 101 102 if(DosGetInfoBlocks(&ptib, &ppib) == 0) 102 if(DosGetInfoBlocks(&ptib, &ppib) == 0) 103 103 { 104 104 char *pszTemp; … … 137 137 else _interrupt(3); //should not happen! 138 138 #endif 139 } 139 } 140 140 while(*cmdline == ' ') cmdline++; //skip leading space 141 141 if(*cmdline == '"') { … … 196 196 strcat(exeShortName, ext); 197 197 198 if ( strlen(fullpath) == 0 ) 198 if ( strlen(fullpath) == 0 ) 199 199 { 200 200 char newExeName[CCHMAXPATH]; … … 205 205 , newExeName /* Result of the search */ 206 206 , sizeof(newExeName) /* Length of search buffer */ 207 ) == NO_ERROR) 207 ) == NO_ERROR) 208 208 { 209 209 strcpy(exeName, newExeName); … … 212 212 213 213 FILESTATUS3 fstat3; 214 if(DosQueryPathInfo(exeName, FIL_STANDARD, (PVOID)&fstat3, sizeof(fstat3))) 214 if(DosQueryPathInfo(exeName, FIL_STANDARD, (PVOID)&fstat3, sizeof(fstat3))) 215 215 { 216 216 nrTries++; … … 257 257 //switch process type to PM so the command line app can create PM 258 258 //windows 259 ppib->pib_ultype = 3; 259 ppib->pib_ultype = 3; 260 260 } 261 261 #endif … … 272 272 273 273 hmq = MyWinCreateMsgQueue(hab, 0); 274 274 275 275 if(argc < 2) { 276 276 MyWinMessageBox(HWND_DESKTOP, NULL, INFO_BANNER, szErrorTitle, 0, MB_OK | MB_ERROR | MB_MOVEABLE); … … 292 292 fVioConsole = FALSE; 293 293 #endif 294 rc = CreateWin32Exe(exeName, win32cmdline, peoptions, reservedMemory, 0, 294 rc = CreateWin32Exe(exeName, win32cmdline, peoptions, reservedMemory, 0, 295 295 fConsoleApp, fVioConsole, errorMod, sizeof(errorMod)); 296 296 if(rc != LDRERROR_SUCCESS) … … 305 305 sprintf(pszErrorMsg, szCPUErrorMsg, exeName); 306 306 break; 307 case LDRERROR_FILE_SYSTEM: 307 case LDRERROR_FILE_SYSTEM: 308 308 sprintf(szErrorMsg, szExeErrorMsg, exeName); 309 309 break; -
TabularUnified branches/gcc-kmk/src/rpcrt4/uuid.cpp ¶
r3325 r21720 40 40 41 41 #include "io.h" 42 #include "sys \timeb.h"43 44 #include <sys \socket.h>45 #include <sys \ioctl.h>42 #include "sys/timeb.h" 43 44 #include <sys/socket.h> 45 #include <sys/ioctl.h> 46 46 #include <netdb.h> 47 #include <netinet \in.h>48 #include <netinet \tcp.h>47 #include <netinet/in.h> 48 #include <netinet/tcp.h> 49 49 #undef interface 50 #include <net \if.h>51 #include <netinet \if_ether.h>50 #include <net/if.h> 51 #include <netinet/if_ether.h> 52 52 #include <nerrno.h> 53 #include <sys \time.h>53 #include <sys/time.h> 54 54 55 55 ULONG WINAPI RtlExtendedIntegerMultiply(LARGE_INTEGER factor1, INT factor2); -
TabularUnified branches/gcc-kmk/src/shdocvw/shdocvw.h ¶
r4943 r21720 31 31 32 32 #ifdef __WIN32OS2__ 33 #include <win \winerror.h>33 #include <win/winerror.h> 34 34 #endif 35 35 -
TabularUnified branches/gcc-kmk/src/shell32/sh.cpp ¶
r21494 r21720 27 27 #define CINTERFACE 28 28 #include "shell32_main.h" 29 #include <win \shlobj.h>29 #include <win/shlobj.h> 30 30 #include <misc.h> 31 31 //#include <nameid.h> -
TabularUnified branches/gcc-kmk/src/shell32/shell32_main.h ¶
r10162 r21720 35 35 * pointer to functions dynamically loaded 36 36 */ 37 extern LPVOID (* WINAPI pCOMCTL32_Alloc) (INT); 38 extern BOOL (* WINAPI pCOMCTL32_Free) (LPVOID); 37 extern LPVOID (* WINAPI pCOMCTL32_Alloc) (INT); 38 extern BOOL (* WINAPI pCOMCTL32_Free) (LPVOID); 39 39 40 40 #define pDPA_Create DPA_Create … … 46 46 #define pDPA_DeletePtr DPA_DeletePtr 47 47 48 #define pDPA_GetPtrCount(hdpa) (*(INT*)(hdpa)) 48 #define pDPA_GetPtrCount(hdpa) (*(INT*)(hdpa)) 49 49 50 50 #define pLookupIconIdFromDirectoryEx LookupIconIdFromDirectoryEx 51 51 #define pCreateIconFromResourceEx CreateIconFromResourceEx 52 52 53 #include <wine \undoccomctl32.h>53 #include <wine/undoccomctl32.h> 54 54 55 55 #define pAddMRUData AddMRUData … … 106 106 107 107 LPEXTRACTICONA IExtractIconA_Constructor(LPITEMIDLIST); 108 HRESULT CreateStreamOnFile (LPCSTR pszFilename, IStream ** ppstm); 108 HRESULT CreateStreamOnFile (LPCSTR pszFilename, IStream ** ppstm); 109 109 110 110 /* fixme: rename the functions when the shell32.dll has it's own exports namespace */ … … 148 148 extern HRESULT (* WINAPI pRegisterDragDrop)(HWND hwnd, IDropTarget* pDropTarget); 149 149 extern HRESULT (* WINAPI pRevokeDragDrop)(HWND hwnd); 150 extern HRESULT (* WINAPI pDoDragDrop)(LPDATAOBJECT,LPDROPSOURCE,DWORD,DWORD*); 150 extern HRESULT (* WINAPI pDoDragDrop)(LPDATAOBJECT,LPDROPSOURCE,DWORD,DWORD*); 151 151 extern void (* WINAPI pReleaseStgMedium)(STGMEDIUM* pmedium); 152 152 extern HRESULT (* WINAPI pOleSetClipboard)(IDataObject* pDataObj); … … 157 157 HRESULT (* WINAPI pRegisterDragDrop)(HWND hwnd, IDropTarget* pDropTarget); 158 158 HRESULT (* WINAPI pRevokeDragDrop)(HWND hwnd); 159 HRESULT (* WINAPI pDoDragDrop)(LPDATAOBJECT,LPDROPSOURCE,DWORD,DWORD*); 159 HRESULT (* WINAPI pDoDragDrop)(LPDATAOBJECT,LPDROPSOURCE,DWORD,DWORD*); 160 160 void (* WINAPI pReleaseStgMedium)(STGMEDIUM* pmedium); 161 161 HRESULT (* WINAPI pOleSetClipboard)(IDataObject* pDataObj); -
TabularUnified branches/gcc-kmk/src/shlwapi/ordinal_odin.cpp ¶
r21494 r21720 38 38 #include <heapstring.h> 39 39 #include <misc.h> 40 #include <win \shell.h>41 #include <win \winerror.h>40 #include <win/shell.h> 41 #include <win/winerror.h> 42 42 #include <winversion.h> 43 43 #include <winuser.h> -
TabularUnified branches/gcc-kmk/src/shlwapi/reg_odin.cpp ¶
r7820 r21720 33 33 #include <heapstring.h> 34 34 #include <misc.h> 35 #include <win \winerror.h>35 #include <win/winerror.h> 36 36 #include "shlwapi_odin.h" 37 37 #define NO_SHLWAPI_STREAM … … 140 140 { 141 141 dprintf(("not yet implemented")); 142 142 143 143 LONG rc = 0; 144 144 return rc; … … 169 169 { 170 170 dprintf(("not yet implemented")); 171 171 172 172 LONG rc = 0; 173 173 return rc; … … 182 182 * Variables : 183 183 * Result : 184 * Remark : 184 * Remark : 185 185 * Status : STUB UNTESTED 186 186 * … … 194 194 { 195 195 dprintf(("not implemented\n")); 196 196 197 197 LONG rc = RegDeleteValueA(hUSKey, 198 198 (LPSTR)lpValue); … … 207 207 * Variables : 208 208 * Result : 209 * Remark : 209 * Remark : 210 210 * Status : STUB UNTESTED 211 211 * … … 219 219 { 220 220 dprintf(("not implemented\n")); 221 221 222 222 LONG rc = RegDeleteValueW(hKey, 223 223 (LPWSTR)lpValue); … … 233 233 * Variables : 234 234 * Result : 235 * Remark : 235 * Remark : 236 236 * Status : STUB UNTESTED 237 237 * … … 255 255 * Variables : 256 256 * Result : 257 * Remark : 257 * Remark : 258 258 * Status : STUB UNTESTED 259 259 * … … 277 277 * Variables : 278 278 * Result : 279 * Remark : 279 * Remark : 280 280 * Status : STUB UNTESTED 281 281 * … … 299 299 * Variables : 300 300 * Result : 301 * Remark : 301 * Remark : 302 302 * Status : STUB UNTESTED 303 303 * … … 323 323 * Variables : 324 324 * Result : 325 * Remark : 325 * Remark : 326 326 * Status : STUB UNTESTED 327 327 * … … 350 350 * Variables : 351 351 * Result : 352 * Remark : 352 * Remark : 353 353 * Status : STUB UNTESTED 354 354 * -
TabularUnified branches/gcc-kmk/src/shlwapi/shlstub.cpp ¶
r21494 r21720 29 29 #include <heapstring.h> 30 30 #include <misc.h> 31 #include <win \shell.h>32 #include <win \winerror.h>31 #include <win/shell.h> 32 #include <win/winerror.h> 33 33 34 34 … … 38 38 /***************************************************************************** 39 39 * Name : StrFromTimeIntervalA 40 * Purpose : 40 * Purpose : 41 41 * Parameters: 42 42 * Variables : 43 43 * Result : 44 * Remark : 44 * Remark : 45 45 * Status : UNTESTED 46 46 * … … 51 51 { 52 52 dprintf(("not yet implemented")); 53 53 54 54 return NULL; 55 55 } … … 58 58 /***************************************************************************** 59 59 * Name : StrFromTimeIntervalW 60 * Purpose : 60 * Purpose : 61 61 * Parameters: 62 62 * Variables : 63 63 * Result : 64 * Remark : 64 * Remark : 65 65 * Status : UNTESTED 66 66 * … … 71 71 { 72 72 dprintf(("not yet implemented")); 73 73 74 74 return NULL; 75 75 } -
TabularUnified branches/gcc-kmk/src/shlwapi/shlwapi.cpp ¶
r21494 r21720 41 41 #include <misc.h> 42 42 #include <unicode.h> 43 #include <win \shell.h>44 #include <win \winerror.h>43 #include <win/shell.h> 44 #include <win/winerror.h> 45 45 46 46 // import OLE support -
TabularUnified branches/gcc-kmk/src/shlwapi/string_odin.cpp ¶
r21494 r21720 42 42 #include <heapstring.h> 43 43 #include <misc.h> 44 #include <win \shell.h>45 #include <win \winerror.h>44 #include <win/shell.h> 45 #include <win/winerror.h> 46 46 #include <winversion.h> 47 47 #include <winuser.h> … … 179 179 (lpString2 == NULL) ) 180 180 return 0; 181 181 182 182 LPSTR lpLoop = (LPSTR)lpString1; 183 183 184 184 for (; (*lpLoop != 0); lpLoop++ ) 185 185 if ( StrChrA( lpString2, *lpLoop ) ) 186 186 return (INT) (lpLoop - lpString1); 187 187 188 188 return (INT) (lpLoop - lpString1); 189 189 } … … 213 213 (lpString2 == NULL) ) 214 214 return 0; 215 215 216 216 LPWSTR lpLoop = (LPWSTR)lpString1; 217 217 218 218 for (; (*lpLoop != 0); lpLoop++ ) 219 219 if ( StrChrW( lpString2, *lpLoop ) ) 220 220 return (INT) (lpLoop - lpString1); 221 221 222 222 return (INT) (lpLoop - lpString1); 223 223 } … … 230 230 * Variables : 231 231 * Result : 232 * Remark : 232 * Remark : 233 233 * Status : UNTESTED 234 234 * … … 241 241 { 242 242 register LPSTR s1; 243 243 244 244 while (*lpString1) 245 245 { … … 255 255 lpString1++; 256 256 } 257 257 258 258 return (LPSTR)NULL; 259 259 } … … 266 266 * Variables : 267 267 * Result : 268 * Remark : 268 * Remark : 269 269 * Status : UNTESTED 270 270 * … … 277 277 { 278 278 register LPWSTR s1; 279 279 280 280 while (*lpString1) 281 281 { … … 291 291 lpString1++; 292 292 } 293 293 294 294 return (LPWSTR)NULL; 295 295 } … … 304 304 305 305 dprintf(("StrRStrIA %x %x %x NOT IMPLEMENTED correctly", lpFirst, lpSrch, unknown)); 306 306 307 307 // lpSrch cannot fit into lpFirst 308 308 if (iLen < 0) 309 309 return (LPSTR)NULL; 310 310 311 311 LPSTR lpThis = (LPSTR)lpFirst + iLen; 312 312 313 313 while (lpThis >= lpFirst) 314 314 { … … 318 318 lpThis--; 319 319 } 320 320 321 321 return NULL; 322 322 } … … 331 331 332 332 dprintf(("StrRStrIA %x %x %x NOT IMPLEMENTED correctly", lpFirst, lpSrch, unknown)); 333 333 334 334 // lpSrch cannot fit into lpFirst 335 335 if (iLen < 0) 336 336 return (LPWSTR)NULL; 337 337 338 338 LPWSTR lpThis = (LPWSTR)lpFirst + iLen; 339 339 340 340 while (lpThis >= lpFirst) 341 341 { … … 345 345 lpThis--; 346 346 } 347 347 348 348 return NULL; 349 349 } -
TabularUnified branches/gcc-kmk/src/shlwapi/url_odin.cpp ¶
r7820 r21720 35 35 #include <heapstring.h> 36 36 #include <misc.h> 37 #include <win \shell.h>38 #include <win \winerror.h>37 #include <win/shell.h> 38 #include <win/winerror.h> 39 39 40 40 #include "shlwapi_odin.h" -
TabularUnified branches/gcc-kmk/src/user32/controls/controls.h ¶
r8543 r21720 10 10 #define __CONTROLS_H 11 11 12 #include <win \win.h>12 #include <win/win.h> 13 13 #include <heapstring.h> 14 14 -
TabularUnified branches/gcc-kmk/src/user32/loadres.cpp ¶
r21303 r21720 22 22 #include <heapstring.h> 23 23 #include <oslibres.h> 24 #include <win \virtual.h>24 #include <win/virtual.h> 25 25 #include "dib.h" 26 26 #include "initterm.h" … … 70 70 hRes = FindResourceW(hinst, (LPWSTR)(((wID>>4)&0xffff)+1), RT_STRINGW); 71 71 if(hRes == NULL) { 72 dprintf(("LoadStringW NOT FOUND from %X, id %d buffersize %d\n", hinst, wID, cchBuffer)); 72 dprintf(("LoadStringW NOT FOUND from %X, id %d buffersize %d\n", hinst, wID, cchBuffer)); 73 73 *lpBuffer = 0; //NT4, SP6 clears first character 74 74 return 0; … … 342 342 headersize = sizeof(BITMAPINFO)+colortablesize+3*sizeof(DWORD); //+ extra space for > 8bpp images 343 343 344 pInfo = (BITMAPINFO *)malloc(headersize+bmpsize); 344 pInfo = (BITMAPINFO *)malloc(headersize+bmpsize); 345 345 if(pInfo == NULL) { 346 346 DebugInt3(); … … 360 360 GetDIBits(hdc, hBitmap, 0, bm.bmHeight, pBitmapData, pInfo, DIB_RGB_COLORS); 361 361 362 res = CreateDIBitmap(hdc, &pInfo->bmiHeader, CBM_INIT, pBitmapData, 362 res = CreateDIBitmap(hdc, &pInfo->bmiHeader, CBM_INIT, pBitmapData, 363 363 pInfo, DIB_RGB_COLORS ); 364 364 -
TabularUnified branches/gcc-kmk/src/user32/msgbox.c ¶
r10190 r21720 8 8 * 9 9 */ 10 #include <win \winbase.h>11 #include <win \winuser.h>10 #include <win/winbase.h> 11 #include <win/winuser.h> 12 12 #include <string.h> 13 13 #include <dlgs.h> -
TabularUnified branches/gcc-kmk/src/user32/oslibmsg.cpp ¶
r21555 r21720 49 49 #include "pmwindow.h" 50 50 #include "oslibwin.h" 51 #include <win \hook.h>51 #include <win/hook.h> 52 52 #include <winscan.h> 53 53 #include <winkeyboard.h> -
TabularUnified branches/gcc-kmk/src/user32/oslibres.h ¶
r6168 r21720 17 17 #endif 18 18 19 #include <win \cursoricon.h>19 #include <win/cursoricon.h> 20 20 21 21 #ifdef OS2_INCLUDED -
TabularUnified branches/gcc-kmk/src/user32/pmwindow.cpp ¶
r21717 r21720 57 57 #include <oslibdnd.h> 58 58 #include <custombuild.h> 59 #include <win \dbt.h>59 #include <win/dbt.h> 60 60 #include "dragdrop.h" 61 61 #include "menu.h" -
TabularUnified branches/gcc-kmk/src/user32/win32class.cpp ¶
r10587 r21720 34 34 #include <win32class.h> 35 35 #include <win32wnd.h> 36 #include <win \winproc.h>36 #include <win/winproc.h> 37 37 #include <unicode.h> 38 38 -
TabularUnified branches/gcc-kmk/src/user32/win32dlg.cpp ¶
r10545 r21720 18 18 #include <misc.h> 19 19 #include <win32dlg.h> 20 #include <win \winproc.h>20 #include <win/winproc.h> 21 21 #include "oslibmsg.h" 22 22 #include "oslibwin.h" … … 202 202 203 203 //Mask away WS_CAPTION style for dialogs with DS_CONTROL style 204 //(necessary for OFN_ENABLETEMPLATE file open dialogs) 204 //(necessary for OFN_ENABLETEMPLATE file open dialogs) 205 205 //(verified this behaviour in NT4, SP6) 206 206 if (dlgInfo.style & DS_CONTROL) cs.style &= ~(WS_CAPTION); … … 265 265 266 266 HWND hwndPreInitFocus = GetFocus(); 267 if(SendMessageA(getWindowHandle(), WM_INITDIALOG, (WPARAM)hwndFocus, param)) 267 if(SendMessageA(getWindowHandle(), WM_INITDIALOG, (WPARAM)hwndFocus, param)) 268 268 { 269 269 //SvL: Experiments in NT4 show that dialogs that are children don't 270 270 // receive focus. Not sure if this is always true. (couldn't 271 271 // find any remarks about this in the SDK docs) 272 if(!(getStyle() & WS_CHILD)) 272 if(!(getStyle() & WS_CHILD)) 273 273 { 274 274 /* check where the focus is again, … … 285 285 // receive focus. Not sure if this is always true. (couldn't 286 286 // find any remarks about this in the SDK docs) 287 if(!(getStyle() & WS_CHILD)) 287 if(!(getStyle() & WS_CHILD)) 288 288 { 289 289 /* If the dlgproc has returned FALSE (indicating handling of keyboard focus) … … 379 379 HOOK_CallHooksA( WH_MSGFILTER, MSGF_DIALOGBOX, 0, 380 380 (LPARAM) pmsg )); 381 381 382 382 HeapFree( GetProcessHeap(), 0, pmsg ); 383 383 if (ret) … … 1163 1163 1164 1164 /* unblock dialog loop */ 1165 PostMessageA(hwnd, WM_NULL, 0, 0); 1165 PostMessageA(hwnd, WM_NULL, 0, 0); 1166 1166 return TRUE; 1167 1167 } -
TabularUnified branches/gcc-kmk/src/user32/win32wbase.cpp ¶
r21641 r21720 63 63 #include "controls.h" 64 64 #include <wprocess.h> 65 #include <win \hook.h>65 #include <win/hook.h> 66 66 #include <menu.h> 67 67 #define INCL_TIMERWIN32 -
TabularUnified branches/gcc-kmk/src/user32/win32wbasepos.cpp ¶
r10091 r21720 36 36 #include "dc.h" 37 37 #include "win32wdesktop.h" 38 #include <win \hook.h>38 #include <win/hook.h> 39 39 40 40 #define DBG_LOCALLOG DBG_win32wbasepos -
TabularUnified branches/gcc-kmk/src/user32/win32wfake.cpp ¶
r10038 r21720 14 14 #include <string.h> 15 15 #include <dbglog.h> 16 #include <win \winproc.h>16 #include <win/winproc.h> 17 17 #include <win32wbase.h> 18 18 #include <win32wfake.h> -
TabularUnified branches/gcc-kmk/src/user32/winaccel.cpp ¶
r10190 r21720 18 18 #include <misc.h> 19 19 #include <heapstring.h> 20 #include <win \winnls.h>20 #include <win/winnls.h> 21 21 22 22 #define DBG_LOCALLOG DBG_winaccel … … 29 29 * 01: BYTE pad (to WORD boundary) 30 30 * 02: WORD event 31 * 04: WORD IDval 31 * 04: WORD IDval 32 32 * 06: WORD pad (to DWORD boundary) 33 33 */ … … 54 54 hRetval = GlobalAlloc(0,sizeof(ACCEL)*nrofaccells); 55 55 accel = (LPACCEL)GlobalLock(hRetval); 56 56 57 57 for (i=0;i<nrofaccells;i++) { 58 58 accel[i].fVirt = accel_table[i].fVirt; -
TabularUnified branches/gcc-kmk/src/user32/windlg.cpp ¶
r21356 r21720 24 24 #include "win32dlg.h" 25 25 #include <heapstring.h> 26 #include <win \drive.h>26 #include <win/drive.h> 27 27 #include <custombuild.h> 28 28 … … 330 330 } 331 331 } 332 } 332 } 333 333 } 334 334 #endif -
TabularUnified branches/gcc-kmk/src/user32/windlgmsg.cpp ¶
r8968 r21720 22 22 #include "win32dlg.h" 23 23 #include <winnls.h> 24 #include <wine \unicode.h>24 #include <wine/unicode.h> 25 25 26 26 #define DBG_LOCALLOG DBG_windlgmsg … … 276 276 if (HIWORD(dw) == DC_HASDEFID) 277 277 { 278 if (IsWindowEnabled(GetDlgItem(hwndDlg, LOWORD(dw)))) 278 if (IsWindowEnabled(GetDlgItem(hwndDlg, LOWORD(dw)))) 279 279 { 280 280 SendMessageA( hwndDlg, WM_COMMAND, -
TabularUnified branches/gcc-kmk/src/user32/window.cpp ¶
r21347 r21720 39 39 #include "pmwindow.h" 40 40 #include "oslibmsg.h" 41 #include <win \winpos.h>42 #include <win \win.h>41 #include <win/winpos.h> 42 #include <win/win.h> 43 43 #include <heapstring.h> 44 44 #include <winuser32.h> … … 155 155 } 156 156 HWND hwnd = window->getWindowHandle(); 157 157 158 158 // set myself as last active popup / window 159 159 window->setLastActive( hwnd ); 160 160 161 161 RELEASE_WNDOBJ(window); 162 162 return hwnd; … … 262 262 } 263 263 HWND hwnd = window->getWindowHandle(); 264 264 265 265 // set myself as last active popup / window 266 266 window->setLastActive( hwnd ); 267 267 268 268 RELEASE_WNDOBJ(window); 269 269 return hwnd; … … 300 300 } 301 301 hwndActive = window->SetActiveWindow(); 302 302 303 303 // check last active popup window 304 304 if (hwndActive) … … 308 308 dprintf(("support for last active popup incorrectly implemented")); 309 309 } 310 310 311 311 RELEASE_WNDOBJ(window); 312 312 return hwndActive; … … 561 561 if ((nCmdShow == SW_RESTORE) && (window->getStyle() & WS_MINIMIZE) && fOS2Look ) 562 562 { 563 dprintf(("ShowWindow: Initiating OS/2 PM restore")); 563 dprintf(("ShowWindow: Initiating OS/2 PM restore")); 564 564 ret = OSLibWinRestoreWindow(window->getOS2FrameWindowHandle()); 565 565 } 566 else 566 else 567 567 ret = window->ShowWindow(nCmdShow); 568 568 RELEASE_WNDOBJ(window); … … 720 720 ret = TRUE; 721 721 722 if(dwStyle & WS_CHILD) 722 if(dwStyle & WS_CHILD) 723 723 { 724 724 //check visibility of parents … … 762 762 //else no child -> no parent (GetParent returns owner otherwise!) 763 763 } 764 else 765 if (type == GA_ROOT) 764 else 765 if (type == GA_ROOT) 766 766 { 767 767 hwndAncestor = window->GetTopParent(); 768 768 } 769 769 else 770 if (type == GA_ROOTOWNER) 771 { 772 if(hwnd != GetDesktopWindow()) 770 if (type == GA_ROOTOWNER) 771 { 772 if(hwnd != GetDesktopWindow()) 773 773 { 774 774 hwndAncestor = hwnd; … … 804 804 TEB *teb; 805 805 806 dprintf(("SetFocus %x", hwnd)); 806 dprintf(("SetFocus %x", hwnd)); 807 807 teb = GetThreadTEB(); 808 808 if(teb == NULL) { … … 929 929 lpThreadInfo->hwndActive = GetActiveWindow(); 930 930 if(lpThreadInfo->hwndActive) { 931 if(dwThreadId != GetWindowThreadProcessId(lpThreadInfo->hwndActive, NULL)) 931 if(dwThreadId != GetWindowThreadProcessId(lpThreadInfo->hwndActive, NULL)) 932 932 {//this thread doesn't own the active window (TODO: correct??) 933 933 lpThreadInfo->hwndActive = 0; … … 980 980 windowDesktop->addRef(); 981 981 window = windowDesktop; 982 } 982 } 983 983 else window = Win32BaseWindow::GetWindowFromHandle(hwnd); 984 984 985 985 if(!window) { 986 986 dprintf(("GetWindowRect, window %x not found", hwnd)); … … 1104 1104 * InternalGetWindowText (USER32.326) 1105 1105 */ 1106 int WIN32API InternalGetWindowText(HWND hwnd, 1106 int WIN32API InternalGetWindowText(HWND hwnd, 1107 1107 LPWSTR lpString, 1108 1108 INT nMaxCount ) … … 1274 1274 windowDesktop->addRef(); 1275 1275 wndfrom = windowDesktop; 1276 } 1276 } 1277 1277 else { 1278 1278 wndfrom = Win32BaseWindow::GetWindowFromHandle(hwndFrom); … … 1288 1288 windowDesktop->addRef(); 1289 1289 wndto = windowDesktop; 1290 } 1290 } 1291 1291 else { 1292 1292 wndto = Win32BaseWindow::GetWindowFromHandle(hwndTo); … … 1887 1887 { 1888 1888 // WND *wndPtr = WIN_FindWndPtr(hwndChild); 1889 1889 1890 1890 // WINPOS_ShowIconTitle( wndPtr, FALSE ); 1891 1891 1892 1892 SetWindowPos( hwndChild, 0, x + (xspacing - GetSystemMetrics(SM_CXICON)) / 2, 1893 1893 y - yspacing - GetSystemMetrics(SM_CYICON)/2, 0, 0, … … 2003 2003 2004 2004 owner = Win32BaseWindow::GetWindowFromHandle(hWnd); 2005 if(!owner) 2005 if(!owner) 2006 2006 { 2007 2007 dprintf(("GetLastActivePopup, window %x not found", hWnd)); … … 2013 2013 if (!IsWindow( hwndRetVal )) 2014 2014 hwndRetVal = owner->getWindowHandle(); 2015 2015 2016 2016 RELEASE_WNDOBJ(owner); 2017 2017 2018 2018 return hwndRetVal; 2019 2019 } … … 2036 2036 } 2037 2037 RELEASE_WNDOBJ(window); 2038 2038 2039 2039 return dwThreadId; 2040 2040 } … … 2220 2220 } 2221 2221 //****************************************************************************** 2222 //The GetWindowModuleFileName function retrieves the full path and file name of 2222 //The GetWindowModuleFileName function retrieves the full path and file name of 2223 2223 //the module associated with the specified window handle. 2224 2224 //****************************************************************************** -
TabularUnified branches/gcc-kmk/src/user32/winicon.cpp ¶
r21356 r21720 47 47 #include <string.h> 48 48 #include <winicon.h> 49 #include <win \cursoricon.h>49 #include <win/cursoricon.h> 50 50 #include <objhandle.h> 51 51 #include "dib.h" 52 52 #include <heapstring.h> 53 #include <win \virtual.h>53 #include <win/virtual.h> 54 54 #include "initterm.h" 55 55 #include "oslibres.h" … … 200 200 201 201 /* Transfer the bitmap bits to the CURSORICONINFO structure */ 202 if(bmpAnd.bmBitsPixel > 1) 202 if(bmpAnd.bmBitsPixel > 1) 203 203 {//Our code expects b&w masks, so convert it first 204 204 //We could also use GetDIBits to do the conversion for us, but it returns … … 216 216 217 217 //blit to the destination HDC & convert to 1bpp 218 BitBlt(hdcDest, 0, 0, bmpAnd.bmWidth, bmpAnd.bmHeight, 218 BitBlt(hdcDest, 0, 0, bmpAnd.bmWidth, bmpAnd.bmHeight, 219 219 hdcSrc, 0, 0, SRCCOPY); 220 220 … … 442 442 if(hActiveCursorPM && hActiveCursorPM != OSLibWinQueryPointer()) { 443 443 dprintf(("Another app changed mouse cursor")); 444 hActiveCursorPM = hActiveCursor = 0; 444 hActiveCursorPM = hActiveCursor = 0; 445 445 } 446 446 return hActiveCursor; … … 593 593 bmpXor.bmBitsPixel = info->bBitsPerPixel; 594 594 bmpXor.bmBits = NULL; 595 ((CURSORICONINFO *)ptr)->hColorBmp = 595 ((CURSORICONINFO *)ptr)->hColorBmp = 596 596 OSLibWinCreatePointer(info, (char *)lpANDbits, (LPBITMAP_W)&bmpAnd, (char *)lpXORbits, (LPBITMAP_W)&bmpXor, fIcon == FALSE); 597 597 #endif … … 1085 1085 //SvL: Must use CreateBitmap here as CreateDIBitmap converts data to 8bpp (GetObjectA info -> 8 bpp) 1086 1086 #if 1 1087 int linewidth; 1087 int linewidth; 1088 1088 int orglinewidth; 1089 1089 -
TabularUnified branches/gcc-kmk/src/user32/winmouse.cpp ¶
r21502 r21720 32 32 #include <commctrl.h> 33 33 #include <debugtools.h> 34 #include <win \mouse.h>34 #include <win/mouse.h> 35 35 #include "winmouse.h" 36 36 #include "oslibmsg.h" -
TabularUnified branches/gcc-kmk/src/user32/winproc.cpp ¶
r10602 r21720 18 18 #include <string.h> 19 19 #include "callwrap.h" 20 #include <win \winproc.h>21 #include <win \debugtools.h>20 #include <win/winproc.h> 21 #include <win/debugtools.h> 22 22 #include <heapcode.h> 23 23 #include "win32wbase.h" … … 307 307 } 308 308 else dprintf2(("CallWindowProcA %x %x %x %x %x (unknown proc)", func, hwnd, msg, wParam, lParam)); 309 309 310 310 if(!IsWindow(hwnd)) { 311 311 dprintf2(("CallWindowProcA, window %x not found", hwnd)); -
TabularUnified branches/gcc-kmk/src/user32/wndmsg.cpp ¶
r10511 r21720 13 13 #include <stdio.h> 14 14 #include <string.h> 15 #include <win \winmfcmsg.h>15 #include <win/winmfcmsg.h> 16 16 #include <spy.h> 17 17 #include "wndmsg.h" -
TabularUnified branches/gcc-kmk/src/win32k/kKrnlLib/src/d16Globl.c ¶
r9507 r21720 28 28 #define INCL_NOPMAPI 29 29 #include <os2.h> 30 #include ".. \..\..\..\include\odinbuild.h" /* FIXME */30 #include "../../../../include/odinbuild.h" /* FIXME */ 31 31 #include "options.h" 32 32 -
TabularUnified branches/gcc-kmk/src/win32k/libconv.c ¶
r4164 r21720 18 18 19 19 20 #include "include \omf.h"20 #include "include/omf.h" 21 21 22 22 int fCodeToCode16 = 0; -
TabularUnified branches/gcc-kmk/src/wininet/wininet.cpp ¶
r9439 r21720 9 9 10 10 #include <os2win.h> 11 #include <win \wininet.h>11 #include <win/wininet.h> 12 12 13 13 //****************************************************************************** -
TabularUnified branches/gcc-kmk/src/winmm/initterm.cpp ¶
r6640 r21720 42 42 #include "winmmtype.h" 43 43 #include "waveoutbase.h" 44 #include <win \options.h>44 #include <win/options.h> 45 45 46 46 #define DBG_LOCALLOG DBG_initterm -
TabularUnified branches/gcc-kmk/src/winmm/initwinmm.cpp ¶
r21358 r21720 46 46 #include "winmmtype.h" 47 47 #include "waveoutbase.h" 48 #include <win \options.h>48 #include <win/options.h> 49 49 #include "initwinmm.h" 50 50 #include <custombuild.h> … … 122 122 WaveOut::setDefaultVolume(dwVolume); 123 123 124 if(fMMPMAvailable == TRUE) 124 if(fMMPMAvailable == TRUE) 125 125 {//if audio access wasn't disabled already, check if mmpm2 is installed 126 126 // try to load the MDM library, not MMPM directly!!! … … 130 130 // this system has no MMPM :-( 131 131 fMMPMAvailable = FALSE; 132 } 132 } 133 133 else 134 134 { … … 140 140 { 141 141 fMMPMAvailable = FALSE; 142 } 142 } 143 143 else 144 144 { … … 161 161 } 162 162 163 if(fMMPMAvailable && RegOpenKeyA(HKEY_LOCAL_MACHINE, CUSTOM_BUILD_OPTIONS_KEY, &hKey) == 0) 163 if(fMMPMAvailable && RegOpenKeyA(HKEY_LOCAL_MACHINE, CUSTOM_BUILD_OPTIONS_KEY, &hKey) == 0) 164 164 { 165 165 DWORD dwSize, dwType; … … 184 184 fMMPMAvailable = FALSE; 185 185 } 186 else 186 else 187 187 { 188 188 // Test for buggy audio drivers to turn off audio automagically 189 for(int i=0;i<sizeof(szBuggyAudio)/sizeof(szBuggyAudio[0]);i++) 189 for(int i=0;i<sizeof(szBuggyAudio)/sizeof(szBuggyAudio[0]);i++) 190 190 { 191 191 if(!strncmp(szPDDName, szBuggyAudio[i], strlen(szBuggyAudio[i]))) { -
TabularUnified branches/gcc-kmk/src/winmm/playsound.cpp ¶
r8470 r21720 24 24 #include <misc.h> 25 25 #include <string.h> 26 #include <win \debugtools.h>26 #include <win/debugtools.h> 27 27 28 28 #define DBG_LOCALLOG DBG_playsound … … 51 51 } 52 52 53 static HMMIO get_mmioFromProfile(UINT uFlags, LPCSTR lpszName) 53 static HMMIO get_mmioFromProfile(UINT uFlags, LPCSTR lpszName) 54 54 { 55 55 char str[128]; 56 56 LPSTR ptr; 57 57 HMMIO hmmio; 58 58 59 59 TRACE("searching in SystemSound List !\n"); 60 60 GetProfileStringA("Sounds", (LPSTR)lpszName, "", str, sizeof(str)); … … 78 78 }; 79 79 80 static void CALLBACK PlaySound_Callback(HWAVEOUT hwo, UINT uMsg, 81 DWORD dwInstance, 80 static void CALLBACK PlaySound_Callback(HWAVEOUT hwo, UINT uMsg, 81 DWORD dwInstance, 82 82 DWORD dwParam1, DWORD dwParam2) 83 83 { … … 98 98 } 99 99 100 static void PlaySound_WaitDone(struct playsound_data* s) 100 static void PlaySound_WaitDone(struct playsound_data* s) 101 101 { 102 102 for (;;) { … … 106 106 } 107 107 InterlockedIncrement((LPLONG)&s->dwEventCount); 108 108 109 109 WaitForSingleObject(s->hEvent, INFINITE); 110 110 } … … 141 141 hmmio = 0; 142 142 if (uFlags & SND_ALIAS) 143 if ((hmmio = get_mmioFromProfile(uFlags, lpszSoundName)) == 0) 143 if ((hmmio = get_mmioFromProfile(uFlags, lpszSoundName)) == 0) 144 144 return FALSE; 145 145 146 146 if (uFlags & SND_FILENAME) 147 147 if ((hmmio=get_mmioFromFile(lpszSoundName)) == 0) return FALSE; 148 148 149 149 if (PlaySound_SearchMode == 1) { 150 150 PlaySound_SearchMode = 0; 151 if ((hmmio = get_mmioFromFile(lpszSoundName)) == 0) 151 if ((hmmio = get_mmioFromFile(lpszSoundName)) == 0) 152 152 hmmio = get_mmioFromProfile(uFlags, lpszSoundName); 153 153 } 154 154 155 155 if (PlaySound_SearchMode == 2) { 156 156 PlaySound_SearchMode = 0; 157 if ((hmmio = get_mmioFromProfile(uFlags | SND_NODEFAULT, lpszSoundName)) == 0) 158 if ((hmmio = get_mmioFromFile(lpszSoundName)) == 0) 157 if ((hmmio = get_mmioFromProfile(uFlags | SND_NODEFAULT, lpszSoundName)) == 0) 158 if ((hmmio = get_mmioFromFile(lpszSoundName)) == 0) 159 159 hmmio = get_mmioFromProfile(uFlags, lpszSoundName); 160 160 } … … 197 197 goto errCleanUp; 198 198 199 TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX\n", 199 TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX\n", 200 200 (LPSTR)&mmckInfo.ckid, (LPSTR)&mmckInfo.fccType, mmckInfo.cksize); 201 201 … … 216 216 waveHdr[0].dwFlags = waveHdr[1].dwFlags = 0L; 217 217 waveHdr[0].dwBufferLength = waveHdr[1].dwBufferLength = bufsize; 218 if (waveOutPrepareHeader(hWave, &waveHdr[0], sizeof(WAVEHDR)) || 218 if (waveOutPrepareHeader(hWave, &waveHdr[0], sizeof(WAVEHDR)) || 219 219 waveOutPrepareHeader(hWave, &waveHdr[1], sizeof(WAVEHDR))) { 220 220 goto errCleanUp; … … 260 260 } 261 261 262 static DWORD WINAPI PlaySound_Thread(LPVOID arg) 262 static DWORD WINAPI PlaySound_Thread(LPVOID arg) 263 263 { 264 264 DWORD res; 265 265 266 266 for (;;) { 267 267 PlaySound_Playing = FALSE; … … 273 273 if (res != WAIT_OBJECT_0) continue; 274 274 PlaySound_Playing = TRUE; 275 275 276 276 if ((PlaySound_fdwSound & SND_RESOURCE) == SND_RESOURCE) { 277 277 HRSRC hRES; … … 292 292 continue; 293 293 } 294 PlaySound_Result = proc_PlaySound((LPCSTR)ptr, 294 PlaySound_Result = proc_PlaySound((LPCSTR)ptr, 295 295 ((UINT16)PlaySound_fdwSound ^ SND_RESOURCE) | SND_MEMORY); 296 296 FreeResource(hGLOB); … … 319 319 { 320 320 static LPSTR StrDup = NULL; 321 321 322 322 TRACE("pszSound='%p' hmod=%04X fdwSound=%08lX\n", 323 323 pszSound, hmod, fdwSound); 324 324 325 325 if (PlaySound_hThread == 0) { /* This is the first time they called us */ 326 326 DWORD id; … … 331 331 if ((PlaySound_hPlayEvent = CreateEventA(NULL, FALSE, FALSE, NULL)) == 0) 332 332 return FALSE; 333 if ((PlaySound_hThread = CreateThread(NULL, 0, PlaySound_Thread, 0, 0, &id)) == 0) 334 return FALSE; 335 } 336 337 /* FIXME? I see no difference between SND_WAIT and SND_NOSTOP ! */ 338 if ((fdwSound & (SND_NOWAIT | SND_NOSTOP)) && PlaySound_Playing) 333 if ((PlaySound_hThread = CreateThread(NULL, 0, PlaySound_Thread, 0, 0, &id)) == 0) 334 return FALSE; 335 } 336 337 /* FIXME? I see no difference between SND_WAIT and SND_NOSTOP ! */ 338 if ((fdwSound & (SND_NOWAIT | SND_NOSTOP)) && PlaySound_Playing) 339 339 return FALSE; 340 340 341 341 /* Trying to stop if playing */ 342 342 if (PlaySound_Playing) PlaySound_Stop = TRUE; 343 343 344 344 /* Waiting playing thread to get ready. I think 10 secs is ok & if not then leave*/ 345 345 if (WaitForSingleObject(PlaySound_hReadyEvent, 1000*10) != WAIT_OBJECT_0) 346 346 return FALSE; 347 348 if (!pszSound || (fdwSound & SND_PURGE)) 347 348 if (!pszSound || (fdwSound & SND_PURGE)) 349 349 return FALSE; /* We stoped playing so leaving */ 350 350 351 351 if (PlaySound_SearchMode != 1) PlaySound_SearchMode = 2; 352 352 if (!(fdwSound & SND_ASYNC)) { 353 if (fdwSound & SND_LOOP) 353 if (fdwSound & SND_LOOP) 354 354 return FALSE; 355 355 PlaySound_pszSound = pszSound; … … 358 358 PlaySound_Result = FALSE; 359 359 SetEvent(PlaySound_hPlayEvent); 360 if (WaitForSingleObject(PlaySound_hMiddleEvent, INFINITE) != WAIT_OBJECT_0) 361 return FALSE; 362 if (WaitForSingleObject(PlaySound_hReadyEvent, INFINITE) != WAIT_OBJECT_0) 360 if (WaitForSingleObject(PlaySound_hMiddleEvent, INFINITE) != WAIT_OBJECT_0) 361 return FALSE; 362 if (WaitForSingleObject(PlaySound_hReadyEvent, INFINITE) != WAIT_OBJECT_0) 363 363 return FALSE; 364 364 return PlaySound_Result; … … 371 371 StrDup = NULL; 372 372 } 373 if (!((fdwSound & SND_MEMORY) || ((fdwSound & SND_RESOURCE) && 373 if (!((fdwSound & SND_MEMORY) || ((fdwSound & SND_RESOURCE) && 374 374 !((DWORD)pszSound >> 16)) || !pszSound)) { 375 375 StrDup = HEAP_strdupA(GetProcessHeap(), 0,pszSound); … … 403 403 LPSTR pszSoundA; 404 404 BOOL bSound; 405 406 if (!((fdwSound & SND_MEMORY) || ((fdwSound & SND_RESOURCE) && 405 406 if (!((fdwSound & SND_MEMORY) || ((fdwSound & SND_RESOURCE) && 407 407 !((DWORD)pszSound >> 16)) || !pszSound)) { 408 408 pszSoundA = HEAP_strdupWtoA(GetProcessHeap(), 0,pszSound); 409 409 bSound = PlaySoundA(pszSoundA, hmod, fdwSound); 410 410 HeapFree(GetProcessHeap(), 0, pszSoundA); 411 } else 411 } else 412 412 bSound = PlaySoundA((LPCSTR)pszSound, hmod, fdwSound); 413 413 414 414 return bSound; 415 415 } -
TabularUnified branches/gcc-kmk/src/winspool/stubs.cpp ¶
r21305 r21720 21 21 #include <odinwrap.h> 22 22 #include <heapstring.h> 23 #include <win \winnls.h>24 #include <win \debugstr.h>25 #include <win \debugtools.h>23 #include <win/winnls.h> 24 #include <win/debugstr.h> 25 #include <win/debugtools.h> 26 26 27 27 #include <stdio.h> -
TabularUnified branches/gcc-kmk/src/winspool/winspool.cpp ¶
r21629 r21720 29 29 #include <odinwrap.h> 30 30 #include <heapstring.h> 31 #include <win \winnls.h>32 #include <win \debugstr.h>33 #include <win \debugtools.h>31 #include <win/winnls.h> 32 #include <win/debugstr.h> 33 #include <win/debugtools.h> 34 34 35 35 #include <stdio.h> -
TabularUnified branches/gcc-kmk/src/wintrust/wintrust.cpp ¶
r21494 r21720 7 7 #define CINTERFACE 8 8 9 #include <win \windef.h>10 #include <win \winerror.h>11 #include <win \ole2.h>9 #include <win/windef.h> 10 #include <win/winerror.h> 11 #include <win/ole2.h> 12 12 #include <misc.h> 13 13 -
TabularUnified branches/gcc-kmk/src/wsock32/new/wsock32.h ¶
r3218 r21720 17 17 18 18 #define TCPV40HDRS 19 #include <sys \socket.h>20 #include <sys \ioctl.h>19 #include <sys/socket.h> 20 #include <sys/ioctl.h> 21 21 #include <netdb.h> 22 #include <netinet \in.h>23 #include <netinet \tcp.h>22 #include <netinet/in.h> 23 #include <netinet/tcp.h> 24 24 #include <nerrno.h> 25 #include <sys \time.h>25 #include <sys/time.h> 26 26 27 27 #include <odinwrap.h> … … 173 173 } _ws_protoent; 174 174 175 typedef struct ws_servent 175 typedef struct ws_servent 176 176 { 177 177 char * s_name; /* official service name */ -
TabularUnified branches/gcc-kmk/src/wsock32/socketwrap.h ¶
r7461 r21720 2 2 #define __SOCKETWRAP_H__ 3 3 4 #include <sys \socket.h>5 #include <sys \ioctl.h>4 #include <sys/socket.h> 5 #include <sys/ioctl.h> 6 6 #include <netdb.h> 7 #include <netinet \in.h>8 #include <netinet \tcp.h>7 #include <netinet/in.h> 8 #include <netinet/tcp.h> 9 9 #include <nerrno.h> 10 10 … … 18 18 19 19 return yyrc; 20 } 20 } 21 21 22 22 #undef accept … … 29 29 addsockettolist(a); 30 30 SetFS(sel); 31 } 31 } 32 32 33 33 #undef addsockettolist … … 43 43 44 44 return yyrc; 45 } 45 } 46 46 47 47 #undef bind … … 57 57 58 58 return yyrc; 59 } 59 } 60 60 61 61 #undef connect … … 71 71 72 72 return yyrc; 73 } 73 } 74 74 75 75 #undef gethostid … … 85 85 86 86 return yyrc; 87 } 87 } 88 88 89 89 #undef getpeername … … 99 99 100 100 return yyrc; 101 } 101 } 102 102 103 103 #undef getsockname … … 113 113 114 114 return yyrc; 115 } 115 } 116 116 117 117 #undef getsockopt … … 127 127 128 128 return yyrc; 129 } 129 } 130 130 131 131 #undef ioctl … … 141 141 142 142 return yyrc; 143 } 143 } 144 144 145 145 #undef listen … … 155 155 156 156 return yyrc; 157 } 157 } 158 158 159 159 #undef recvmsg … … 169 169 170 170 return yyrc; 171 } 171 } 172 172 173 173 #undef recv … … 183 183 184 184 return yyrc; 185 } 185 } 186 186 187 187 #undef recvfrom … … 197 197 198 198 return yyrc; 199 } 199 } 200 200 201 201 #undef removesocketfromlist … … 211 211 212 212 return yyrc; 213 } 213 } 214 214 215 215 #undef select … … 225 225 226 226 return yyrc; 227 } 227 } 228 228 229 229 #undef send … … 239 239 240 240 return yyrc; 241 } 241 } 242 242 243 243 #undef sendmsg … … 253 253 254 254 return yyrc; 255 } 255 } 256 256 257 257 #undef sendto … … 267 267 268 268 return yyrc; 269 } 269 } 270 270 271 271 #undef setsockopt … … 281 281 282 282 return yyrc; 283 } 283 } 284 284 285 285 #undef sock_init … … 295 295 296 296 return yyrc; 297 } 297 } 298 298 299 299 #undef sock_errno … … 306 306 psock_errno(a); 307 307 SetFS(sel); 308 } 308 } 309 309 310 310 #undef psock_errno … … 320 320 321 321 return yyrc; 322 } 322 } 323 323 324 324 #undef socket … … 334 334 335 335 return yyrc; 336 } 336 } 337 337 338 338 #undef soclose … … 348 348 349 349 return yyrc; 350 } 350 } 351 351 352 352 #undef so_cancel … … 362 362 363 363 return yyrc; 364 } 364 } 365 365 366 366 #undef readv … … 376 376 377 377 return yyrc; 378 } 378 } 379 379 380 380 #undef writev … … 390 390 391 391 return yyrc; 392 } 392 } 393 393 394 394 #undef shutdown … … 404 404 405 405 return yyrc; 406 } 406 } 407 407 408 408 #undef Raccept … … 418 418 419 419 return yyrc; 420 } 420 } 421 421 422 422 #undef Rbind … … 432 432 433 433 return yyrc; 434 } 434 } 435 435 436 436 #undef Rconnect … … 446 446 447 447 return yyrc; 448 } 448 } 449 449 450 450 #undef Rgetsockname … … 460 460 461 461 return yyrc; 462 } 462 } 463 463 464 464 #undef Rlisten … … 474 474 475 475 return yyrc; 476 } 476 } 477 477 478 478 #undef gethostname … … 488 488 489 489 return yyrc; 490 } 490 } 491 491 492 492 #undef gethostbyname … … 502 502 503 503 return yyrc; 504 } 504 } 505 505 506 506 #undef gethostbyaddr … … 516 516 517 517 return yyrc; 518 } 518 } 519 519 520 520 #undef getnetbyname … … 530 530 531 531 return yyrc; 532 } 532 } 533 533 534 534 #undef getnetbyaddr … … 544 544 545 545 return yyrc; 546 } 546 } 547 547 548 548 #undef getservbyname … … 558 558 559 559 return yyrc; 560 } 560 } 561 561 562 562 #undef getservbyport … … 572 572 573 573 return yyrc; 574 } 574 } 575 575 576 576 #undef getprotobyname … … 586 586 587 587 return yyrc; 588 } 588 } 589 589 590 590 #undef getprotobynumber … … 597 597 sethostent(a); 598 598 SetFS(sel); 599 } 599 } 600 600 601 601 #undef sethostent … … 611 611 612 612 return yyrc; 613 } 613 } 614 614 615 615 #undef gethostent … … 622 622 endhostent(); 623 623 SetFS(sel); 624 } 624 } 625 625 626 626 #undef endhostent … … 633 633 setnetent(a); 634 634 SetFS(sel); 635 } 635 } 636 636 637 637 #undef setnetent … … 647 647 648 648 return yyrc; 649 } 649 } 650 650 651 651 #undef getnetent … … 658 658 endnetent(); 659 659 SetFS(sel); 660 } 660 } 661 661 662 662 #undef endnetent … … 669 669 setprotoent(a); 670 670 SetFS(sel); 671 } 671 } 672 672 673 673 #undef setprotoent … … 683 683 684 684 return yyrc; 685 } 685 } 686 686 687 687 #undef getprotoent … … 694 694 endprotoent(); 695 695 SetFS(sel); 696 } 696 } 697 697 698 698 #undef endprotoent … … 705 705 setservent(a); 706 706 SetFS(sel); 707 } 707 } 708 708 709 709 #undef setservent … … 719 719 720 720 return yyrc; 721 } 721 } 722 722 723 723 #undef getservent … … 730 730 endservent(); 731 731 SetFS(sel); 732 } 732 } 733 733 734 734 #undef endservent … … 744 744 745 745 return yyrc; 746 } 746 } 747 747 748 748 #undef tcp_h_errno … … 758 758 759 759 return yyrc; 760 } 760 } 761 761 762 762 #undef Rgethostbyname -
TabularUnified branches/gcc-kmk/src/wsock32/wsock32.h ¶
r21417 r21720 17 17 18 18 #include "socketwrap.h" 19 #include <sys \time.h>19 #include <sys/time.h> 20 20 21 21 #include <odinwrap.h> -
TabularUnified branches/gcc-kmk/tools/install/odininst.cpp ¶
r21679 r21720 47 47 #include "debugtools.h" 48 48 #include <odininst.h> 49 #include <win \options.h>49 #include <win/options.h> 50 50 #include <versionos2.h> 51 51 #include <time.h>
Note:
See TracChangeset
for help on using the changeset viewer.