Changeset 21720


Ignore:
Timestamp:
Oct 19, 2011, 11:26:02 AM (13 years ago)
Author:
dmik
Message:

Replace "\" with "/" in include statements.

Location:
branches/gcc-kmk
Files:
91 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/gcc-kmk/include/custombuild.h

    r21717 r21720  
    22#define __CUSTOMBUILD_H__
    33
    4 #include <win\peexe.h>
     4#include <win/peexe.h>
    55#include <initdll.h>
    66
  • TabularUnified branches/gcc-kmk/include/heapstring.h

    r10192 r21720  
    99#include <odin.h>
    1010
    11 #include <wine\unicode.h>
     11#include <wine/unicode.h>
    1212//SvL: strcase -> case insensitive!
    1313#define strncasecmp lstrncmpiA
  • TabularUnified branches/gcc-kmk/include/odinlx.h

    r21393 r21720  
    1414#define _ODINLX_H
    1515
    16 #include <win\peexe.h>
     16#include <win/peexe.h>
    1717#include <versionos2.h>
    1818
  • TabularUnified branches/gcc-kmk/include/win/wine/debug.h

    r8208 r21720  
    2222#define __WINE_WINE_DEBUG_H
    2323
    24 #include <win\debugtools.h>
     24#include <win/debugtools.h>
    2525#include <stdarg.h>
    2626
  • TabularUnified branches/gcc-kmk/src/advapi32/service.cpp

    r5976 r21720  
    1010 *
    1111 *
    12  * TODO: Not done; starting services; control handlers and many other things 
     12 * TODO: Not done; starting services; control handlers and many other things
    1313 * TODO: Service status handles are the same as service handles
    1414 *
     
    2626#include <misc.h>
    2727#include <unicode.h>
    28 #include <win\winreg.h>
    29 #include <win\winsvc.h>
     28#include <win/winreg.h>
     29#include <win/winsvc.h>
    3030#include <heapstring.h>
    3131#define USE_ODIN_REGISTRY_APIS
     
    7171//TODO: Faster way to checking this
    7272//*****************************************************************************
    73 BOOL CheckServiceHandle(SC_HANDLE hService) 
     73BOOL CheckServiceHandle(SC_HANDLE hService)
    7474{
    7575 HKEY keyThisService;
     
    147147           fdwDesiredAccess));
    148148
    149   if(lpszMachineName) 
     149  if(lpszMachineName)
    150150        lpszMachineNameA = HEAP_strdupWtoA(GetProcessHeap(), 0, lpszMachineName);
    151151  if(lpszDatabaseName)
     
    154154  hService = OpenSCManagerA(lpszMachineNameA, lpszDataBaseNameA, fdwDesiredAccess);
    155155
    156   if(lpszMachineNameA) 
     156  if(lpszMachineNameA)
    157157        HeapFree(GetProcessHeap(), 0, lpszMachineNameA);
    158158  if(lpszDataBaseNameA)
     
    190190        return FALSE;
    191191  }
    192  
     192
    193193  if(lpszServiceName == NULL) {
    194194        SetLastError(ERROR_INVALID_PARAMETER);
     
    442442 * Result    :
    443443 * Remark    :
    444  * Status    : 
     444 * Status    :
    445445 *
    446446 * Author    : SvL
     
    494494 * Result    :
    495495 * Remark    :
    496  * Status    : 
     496 * Status    :
    497497 *
    498498 * Author    : SvL
     
    574574 * Result    :
    575575 * Remark    :
    576  * Status    : 
     576 * Status    :
    577577 *
    578578 * Author    : SvL
     
    621621 * Result    :
    622622 * Remark    :
    623  * Status    : 
     623 * Status    :
    624624 *
    625625 * Author    : SvL
     
    665665 * Result    :
    666666 * Remark    :
    667  * Status    : 
     667 * Status    :
    668668 *
    669669 * Author    : SvL
     
    719719  RegSetValueExA(keyThisService, REG_SERVICE_STARTTYPE, 0, REG_DWORD, (LPBYTE)&dwStartType, sizeof(DWORD));
    720720  RegSetValueExA(keyThisService, REG_SERVICE_ERRORCONTROL, 0, REG_DWORD, (LPBYTE)&dwErrorControl, sizeof(DWORD));
    721   if(lpDisplayName) 
     721  if(lpDisplayName)
    722722        RegSetValueExA(keyThisService, REG_SERVICE_DISPLAYNAME, 0, REG_SZ, (LPBYTE)lpDisplayName, strlen(lpDisplayName)+1);
    723   if(lpLoadOrderGroup) 
     723  if(lpLoadOrderGroup)
    724724        RegSetValueExA(keyThisService, REG_SERVICE_LOADORDERGROUP, 0, REG_SZ, (LPBYTE)lpDisplayName, strlen(lpLoadOrderGroup)+1);
    725725  if(lpDependencies) {
     
    736736
    737737  //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.
    739739  DWORD tag = 1; //TODO!!
    740740  RegSetValueExA(keyThisService, REG_SERVICE_TAG, 0, REG_DWORD, (LPBYTE)&tag, sizeof(DWORD));
     
    773773 * Result    :
    774774 * Remark    :
    775  * Status    : 
     775 * Status    :
    776776 *
    777777 * Author    : SvL
     
    855855 * Result    :
    856856 * Remark    :
    857  * Status    : 
     857 * Status    :
    858858 *
    859859 * Author    : SvL
     
    893893 * Result    :
    894894 * Remark    :
    895  * Status    : 
     895 * Status    :
    896896 *
    897897 * Author    : SvL
     
    929929 * Result    :
    930930 * Remark    :
    931  * Status    : 
     931 * Status    :
    932932 *
    933933 * Author    : SvL
     
    962962 * Result    :
    963963 * Remark    :
    964  * Status    : 
     964 * Status    :
    965965 *
    966966 * Author    : SvL
     
    10211021 * Result    :
    10221022 * Remark    :
    1023  * Status    : 
     1023 * Status    :
    10241024 *
    10251025 * Author    : SvL
     
    13591359        while(*cmd != ' ' && *cmd != 0) cmd++; //skip non-space chars
    13601360        while(*cmd == ' ' && *cmd != 0) cmd++; //skip spaces
    1361         nrargs++;       
     1361        nrargs++;
    13621362  }
    13631363  return nrargs;
     
    13731373 * Result    :
    13741374 * Remark    :
    1375  * Status    : 
     1375 * Status    :
    13761376 *
    13771377 * Author    : SvL
     
    14131413 * Result    :
    14141414 * Remark    :
    1415  * Status    : 
     1415 * Status    :
    14161416 *
    14171417 * Author    : SvL
     
    14531453 * Result    :
    14541454 * Remark    :
    1455  * Status    : 
     1455 * Status    :
    14561456 *
    14571457 * Author    : SvL
     
    14671467           lpHandlerProc));
    14681468
    1469   //Doesn't work for services of type 
     1469  //Doesn't work for services of type
    14701470  if(lpszServiceName == NULL) {
    14711471        SetLastError(ERROR_INVALID_NAME);
     
    14941494 * Result    :
    14951495 * Remark    :
    1496  * Status    : 
     1496 * Status    :
    14971497 *
    14981498 * Author    : SvL
     
    15031503{
    15041504 SC_HANDLE hSCMgr, hService;
    1505  
     1505
    15061506  dprintf(("ADVAPI32: RegisterServiceCtrlHandlerW(%s,%08xh) not implemented (FAKED)",
    15071507           lpszServiceName,
    15081508           lpHandlerProc));
    15091509
    1510   //Doesn't work for services of type 
     1510  //Doesn't work for services of type
    15111511  if(lpszServiceName == NULL) {
    15121512        SetLastError(ERROR_INVALID_NAME);
     
    15421542 * Result    :
    15431543 * Remark    :
    1544  * Status    : 
     1544 * Status    :
    15451545 *
    15461546 * Author    : SvL
     
    15971597 * Result    :
    15981598 * Remark    : Called from ServiceMain function (registered with RegisterServiceCtrlHandler)
    1599  * Status    : 
     1599 * Status    :
    16001600 *
    16011601 * Author    : SvL
     
    16371637 * Result    :
    16381638 * Remark    :
    1639  * Status    : 
     1639 * Status    :
    16401640 *
    16411641 * Author    : SvL
     
    16851685  keytype = REG_DWORD;
    16861686  RegQueryValueExA((HKEY)schService, REG_SERVICE_WAITHINT, 0, &keytype, (LPBYTE)&lpssServiceStatus->dwWaitHint, &size);
    1687  
     1687
    16881688  SetLastError(0);
    16891689  return TRUE;
  • TabularUnified branches/gcc-kmk/src/comdlg32/cdlg.h

    r8593 r21720  
    6464#define PD32_PRINTER_STATUS_READY             1536
    6565#define PD32_PRINTER_STATUS_PAUSED            1537
    66 #define PD32_PRINTER_STATUS_ERROR             1538 
     66#define PD32_PRINTER_STATUS_ERROR             1538
    6767#define PD32_PRINTER_STATUS_PENDING_DELETION  1539
    6868#define PD32_PRINTER_STATUS_PAPER_JAM         1540
     
    102102/* DPA */
    103103#ifdef __WIN32OS2__
    104 #include <win\shell.h>
     104#include <win/shell.h>
    105105
    106106LPVOID WINAPI SHAlloc(DWORD);
  • TabularUnified branches/gcc-kmk/src/comdlg32/filedlg.c

    r9522 r21720  
    2222
    2323#ifdef __WIN32OS2__
    24 #include <win\cursoricon.h>
     24#include <win/cursoricon.h>
    2525#include <heapstring.h>
    2626
     
    4242
    4343#define BUFFILE 512
    44 #define BUFFILEALLOC 512 * sizeof(WCHAR)   
    45 
    46 struct FSPRIVATE 
     44#define BUFFILEALLOC 512 * sizeof(WCHAR)
     45
     46struct FSPRIVATE
    4747{
    4848    HWND hwnd; /* file dialog window handle */
     
    7575#define LFS32A 2
    7676#define LFS32W 3
    77  
     77
    7878static const WCHAR FILE_star[] = {'*','.','*', 0};
    7979static const WCHAR FILE_bslash[] = {'\\', 0};
     
    125125    static BOOL initialized = 0;
    126126    CURSORICONINFO *fldrInfo;
    127    
     127
    128128    if (!initialized) {
    129129#ifdef __WIN32OS2__
     
    148148        hNet     = LoadImageA( inst, "NETWORK", IMAGE_ICON, 16, 16, LR_SHARED );
    149149#endif
    150         if (hFolder == 0 || hFolder2 == 0 || hFloppy == 0 || 
     150        if (hFolder == 0 || hFolder2 == 0 || hFloppy == 0 ||
    151151            hHDisk == 0 || hCDRom == 0 || hNet == 0)
    152152        {
     
    160160        fldrInfo = (CURSORICONINFO *) GlobalLock16( hFolder2 );
    161161        if (!fldrInfo)
    162         {       
     162        {
    163163            ERR("Error measuring icons !\n");
    164164            return FALSE;
     
    219219    } else { /* get it from internal Wine resource */
    220220        HANDLE hResInfo;
    221         if (!(hResInfo = FindResourceA(COMMDLG_hInstance32, 
     221        if (!(hResInfo = FindResourceA(COMMDLG_hInstance32,
    222222             lfs->open? "OPEN_FILE":"SAVE_FILE", RT_DIALOGA)))
    223223        {
     
    274274        DWORD size;
    275275
    276         if (!(hResInfo = FindResourceA(COMMDLG_hInstance32, 
     276        if (!(hResInfo = FindResourceA(COMMDLG_hInstance32,
    277277               lfs->open ? "OPEN_FILE":"SAVE_FILE", RT_DIALOGA)))
    278278        {
     
    424424  i = 0;
    425425  if (cfptr)
    426     for ( ;(n = lstrlenW(cfptr)) != 0; i++) 
     426    for ( ;(n = lstrlenW(cfptr)) != 0; i++)
    427427      {
    428428        cfptr += n + 1;
     
    432432      }
    433433  if (fptr)
    434     for ( ;(n = lstrlenW(fptr)) != 0; i++) 
     434    for ( ;(n = lstrlenW(fptr)) != 0; i++)
    435435      {
    436436        fptr += n + 1;
     
    455455    {
    456456        if (!(str = HeapAlloc(GetProcessHeap(), 0, BUFFILEALLOC))) return FALSE;
    457         SendMessageW(lpdis->hwndItem, LB_GETTEXT, lpdis->itemID, 
     457        SendMessageW(lpdis->hwndItem, LB_GETTEXT, lpdis->itemID,
    458458                      (LPARAM)str);
    459459
     
    486486        if (!(str = HeapAlloc(GetProcessHeap(), 0, BUFFILEALLOC)))
    487487            return FALSE;
    488         SendMessageW(lpdis->hwndItem, LB_GETTEXT, lpdis->itemID, 
     488        SendMessageW(lpdis->hwndItem, LB_GETTEXT, lpdis->itemID,
    489489                      (LPARAM)str);
    490490
     
    515515        if (!(str = HeapAlloc(GetProcessHeap(), 0, BUFFILEALLOC)))
    516516            return FALSE;
    517         SendMessageW(lpdis->hwndItem, CB_GETLBTEXT, lpdis->itemID, 
     517        SendMessageW(lpdis->hwndItem, CB_GETLBTEXT, lpdis->itemID,
    518518                      (LPARAM)str);
    519519        root[0] += str[2] - 'a';
     
    550550 *                              FILEDLG_WMMeasureItem           [internal]
    551551 */
    552 static LONG FILEDLG_WMMeasureItem(HWND hWnd, WPARAM wParam, LPARAM lParam) 
     552static LONG FILEDLG_WMMeasureItem(HWND hWnd, WPARAM wParam, LPARAM lParam)
    553553{
    554554    LPMEASUREITEMSTRUCT lpmeasure;
    555    
     555
    556556    lpmeasure = (LPMEASUREITEMSTRUCT)lParam;
    557557    lpmeasure->itemHeight = fldrHeight;
     
    562562 */
    563563#ifdef __WIN32OS2__
    564 static LONG FILEDLG_WMMeasureItem16(HWND hWnd, WPARAM wParam, LPARAM lParam) 
     564static LONG FILEDLG_WMMeasureItem16(HWND hWnd, WPARAM wParam, LPARAM lParam)
    565565{
    566566    LPMEASUREITEMSTRUCT lpmeasure;
    567    
     567
    568568    lpmeasure = (LPMEASUREITEMSTRUCT)lParam;
    569569    lpmeasure->itemHeight = fldrHeight;
     
    571571}
    572572#else
    573 static LONG FILEDLG_WMMeasureItem16(HWND16 hWnd, WPARAM16 wParam, LPARAM lParam) 
     573static LONG FILEDLG_WMMeasureItem16(HWND16 hWnd, WPARAM16 wParam, LPARAM lParam)
    574574{
    575575    LPMEASUREITEMSTRUCT16 lpmeasure;
    576    
     576
    577577    lpmeasure = MapSL(lParam);
    578578    lpmeasure->itemHeight = fldrHeight;
     
    641641  if (ofn->nFilterIndex == 0 && ofn->lpstrCustomFilter == NULL)
    642642        ofn->nFilterIndex = 1;
    643   SendDlgItemMessageW(hWnd, cmb1, CB_SETCURSEL, ofn->nFilterIndex - 1, 0);   
     643  SendDlgItemMessageW(hWnd, cmb1, CB_SETCURSEL, ofn->nFilterIndex - 1, 0);
    644644  lstrcpynW(tmpstr, FILEDLG_GetFileType(ofn->lpstrCustomFilter,
    645645             (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",
    647647                        ofn->nFilterIndex, debugstr_w(tmpstr));
    648648  SetDlgItemTextW( hWnd, edt1, tmpstr );
     
    651651  DlgDirListComboBoxW(hWnd, tmpstr, cmb2, 0, DDL_DRIVES | DDL_EXCLUSIVE);
    652652  /* read initial directory */
    653   if (ofn->lpstrInitialDir != NULL) 
     653  if (ofn->lpstrInitialDir != NULL)
    654654    {
    655655      int len;
     
    720720/***********************************************************************
    721721 *                              FILEDLG_UpdateResult            [internal]
    722  *      update the displayed file name (with path) 
     722 *      update the displayed file name (with path)
    723723 */
    724724void FILEDLG_UpdateResult(LFSPRIVATE lfs, WCHAR *tmpstr)
     
    779779/***********************************************************************
    780780 *                              FILEDLG_UpdateFileTitle         [internal]
    781  *      update the displayed file name (without path) 
     781 *      update the displayed file name (without path)
    782782 */
    783783void FILEDLG_UpdateFileTitle(LFSPRIVATE lfs)
     
    785785  LONG lRet;
    786786  LPOPENFILENAMEW ofnW = lfs->ofnW;
    787   if (ofnW->lpstrFileTitle != NULL) 
     787  if (ofnW->lpstrFileTitle != NULL)
    788788  {
    789789    lRet = SendDlgItemMessageW(lfs->hwnd, lst1, LB_GETCURSEL, 0, 0);
     
    997997        lRet = (BOOL)FILEDLG_CallWindowProc(lfs, lfs->fileokstring,
    998998                  0, lfs->lParam );
    999         if (lRet)       
     999        if (lRet)
    10001000        {
    10011001            *ofnW = ofnsav; /* restore old state */
     
    10351035                         (LPARAM)pstr);
    10361036    wsprintfW(diskname, FILE_specc, pstr[2]);
    1037     HeapFree(GetProcessHeap(), 0, pstr);   
     1037    HeapFree(GetProcessHeap(), 0, pstr);
    10381038
    10391039    return FILEDLG_Validate( lfs, diskname, cmb2, lRet, TRUE );
     
    10671067 */
    10681068static LRESULT FILEDLG_WMCommand(HWND hWnd, LPARAM lParam, UINT notification,
    1069        UINT control, LFSPRIVATE lfs ) 
     1069       UINT control, LFSPRIVATE lfs )
    10701070{
    10711071    switch (control)
     
    10901090
    10911091        case cmb1: /* file type drop list */
    1092         if (notification == CBN_SELCHANGE) 
     1092        if (notification == CBN_SELCHANGE)
    10931093            return FILEDLG_FileTypeChange( lfs );
    10941094        break;
     
    12151215    if (ofnA->lpstrTitle)
    12161216        str = ofnA->lpstrTitle;
    1217     else 
     1217    else
    12181218        /* Allocates default title (FIXME : get it from resource) */
    12191219        str = open ? defaultopen:defaultsave;
     
    12721272/************************************************************************
    12731273 *                              FILEDLG_DestroyPrivate            [internal]
    1274  *      destroys the private object 
     1274 *      destroys the private object
    12751275 */
    12761276void FILEDLG_DestroyPrivate(LFSPRIVATE lfs)
     
    13111311/************************************************************************
    13121312 *                              FILEDLG_AllocPrivate            [internal]
    1313  *      allocate a private object to hold 32 bits Unicode 
     1313 *      allocate a private object to hold 32 bits Unicode
    13141314 *      structure that will be used throughtout the calls, while
    13151315 *      keeping available the original structures and a few variables
     
    13691369                FILEDLG_MapOfnStructA(lfs->ofnA, lfs->ofnW, lfs->open);
    13701370        }
    1371         else 
     1371        else
    13721372            ret = NULL;
    13731373    }
     
    13901390 * Creates a win31 style dialog box for the user to select a file to open/save.
    13911391 */
    1392 BOOL WINAPI GetFileName31A( 
     1392BOOL WINAPI GetFileName31A(
    13931393                           LPOPENFILENAMEA lpofn, /* addess of structure with data*/
    13941394                           UINT dlgType /* type dialogue : open/save */
     
    14051405    {
    14061406        hInst = GetWindowLongA( lpofn->hwndOwner, GWL_HINSTANCE );
    1407         bRet = DialogBoxIndirectParamA( hInst, lfs->template, lpofn->hwndOwner, 
     1407        bRet = DialogBoxIndirectParamA( hInst, lfs->template, lpofn->hwndOwner,
    14081408             (DLGPROC) FileOpenDlgProc, (DWORD) lfs);
    14091409        FILEDLG_DestroyPrivate(lfs);
     
    14201420 * Creates a win31 style dialog box for the user to select a file to open/save
    14211421 */
    1422 BOOL WINAPI GetFileName31W( 
     1422BOOL WINAPI GetFileName31W(
    14231423                           LPOPENFILENAMEW lpofn, /* addess of structure with data*/
    14241424                           UINT dlgType /* type dialogue : open/save */
     
    14351435    {
    14361436        hInst = GetWindowLongA( lpofn->hwndOwner, GWL_HINSTANCE );
    1437         bRet = DialogBoxIndirectParamW( hInst, lfs->template, lpofn->hwndOwner, 
     1437        bRet = DialogBoxIndirectParamW( hInst, lfs->template, lpofn->hwndOwner,
    14381438             (DLGPROC) FileOpenDlgProc, (DWORD) lfs);
    14391439        FILEDLG_DestroyPrivate(lfs);
     
    14531453LRESULT WINAPI FileOpenDlgProc16(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam,
    14541454                               LPARAM lParam)
    1455 { 
     1455{
    14561456    LFSPRIVATE lfs = (LFSPRIVATE)GetPropA(hWnd,OFN_PROP);
    14571457    DRAWITEMSTRUCT dis;
    1458  
     1458
    14591459    TRACE("msg=%x wparam=%x lParam=%lx\n", wMsg, wParam, lParam);
    14601460    if ((wMsg != WM_INITDIALOG) && lfs && lfs->hook)
    14611461        {
    14621462            LRESULT lRet = (BOOL16)FILEDLG_CallWindowProc(lfs, wMsg, wParam, lParam);
    1463             if (lRet)   
     1463            if (lRet)
    14641464                return lRet;         /* else continue message processing */
    14651465        }
     
    15101510   LRESULT  lRet;
    15111511   lRet = (BOOL16)FILEDLG_CallWindowProc(lfs, wMsg, wParam, lParam);
    1512    if (lRet)   
     1512   if (lRet)
    15131513    return lRet;         /* else continue message processing */
    1514   }             
     1514  }
    15151515  switch (wMsg) {
    15161516   case WM_INITDIALOG:
    15171517      return FILEDLG_WMInitDialog(hWnd, wParam, lParam);
    1518      
     1518
    15191519   case WM_MEASUREITEM:
    15201520      return FILEDLG_WMMeasureItem16(hWnd, wParam, lParam);
    1521    
     1521
    15221522   case WM_DRAWITEM:
    15231523      FILEDLG_MapDrawItemStruct(MapSL(lParam), &dis);
     
    15271527      return FILEDLG_WMCommand(hWnd, lParam, HIWORD(lParam), wParam, lfs);
    15281528  }
    1529  
     1529
    15301530  /*
    15311531  case WM_CTLCOLOR:
     
    15411541   }
    15421542   return FALSE;
    1543    
     1543
    15441544   */
    15451545  return FALSE;
     
    15491549/***********************************************************************
    15501550 *           FileOpenDlgProc                                    [internal]
    1551  *      Used for open and save, in fact.   
     1551 *      Used for open and save, in fact.
    15521552 */
    15531553static LRESULT WINAPI FileOpenDlgProc(HWND hWnd, UINT wMsg,
     
    15611561            LRESULT lRet;
    15621562            lRet  = (BOOL)FILEDLG_CallWindowProc(lfs, wMsg, wParam, lParam);
    1563             if (lRet)   
     1563            if (lRet)
    15641564                return lRet;         /* else continue message processing */
    15651565        }
     
    15951595}
    15961596
    1597 /* ------------------ APIs ---------------------- */ 
     1597/* ------------------ APIs ---------------------- */
    15981598#ifndef __WIN32OS2__
    15991599/***********************************************************************
     
    16091609 *    unknown, there are some FIXME's left.
    16101610 */
    1611 BOOL16 WINAPI GetOpenFileName16( 
     1611BOOL16 WINAPI GetOpenFileName16(
    16121612                                SEGPTR ofn /* [in/out] address of structure with data*/
    16131613                                )
     
    16261626        hInst = GetWindowLongA( lpofn->hwndOwner, GWL_HINSTANCE );
    16271627        ptr = GetProcAddress16(GetModuleHandle16("COMMDLG"), (LPCSTR) 6);
    1628         bRet = DialogBoxIndirectParam16( hInst, lfs->hDlgTmpl16, lpofn->hwndOwner, 
     1628        bRet = DialogBoxIndirectParam16( hInst, lfs->hDlgTmpl16, lpofn->hwndOwner,
    16291629             (DLGPROC16) ptr, (DWORD) lfs);
    16301630        FILEDLG_DestroyPrivate(lfs);
     
    16471647 *    unknown. There are some FIXME's left.
    16481648 */
    1649 BOOL16 WINAPI GetSaveFileName16( 
     1649BOOL16 WINAPI GetSaveFileName16(
    16501650                                SEGPTR ofn /* [in/out] addess of structure with data*/
    16511651                                )
     
    16641664        hInst = GetWindowLongA( lpofn->hwndOwner, GWL_HINSTANCE );
    16651665        ptr = GetProcAddress16(GetModuleHandle16("COMMDLG"), (LPCSTR) 7);
    1666         bRet = DialogBoxIndirectParam16( hInst, lfs->hDlgTmpl16, lpofn->hwndOwner, 
     1666        bRet = DialogBoxIndirectParam16( hInst, lfs->hDlgTmpl16, lpofn->hwndOwner,
    16671667             (DLGPROC16) ptr, (DWORD) lfs);
    16681668        FILEDLG_DestroyPrivate(lfs);
    1669     } 
     1669    }
    16701670
    16711671    TRACE("return lpstrFile='%s' !\n", (char *)MapSL(lpofn->lpstrFile));
     
    17751775    {
    17761776        return GetFileDialog95A(ofn, SAVE_DIALOG);
    1777     } 
     1777    }
    17781778    else
    17791779    {
     
    18111811    {
    18121812        return GetFileDialog95W(ofn, SAVE_DIALOG);
    1813     } 
     1813    }
    18141814    else
    18151815    {
  • TabularUnified branches/gcc-kmk/src/comdlg32/filedlg95.c

    r21512 r21720  
    4141#include <heapstring.h>
    4242#include <misc.h>
    43 #include <win\shlwapi.h>
     43#include <win/shlwapi.h>
    4444
    4545#define MapHModuleSL(a) a
     
    8686  HIMAGELIST hImgList;
    8787  int m_iIndent;      /* Indentation index */
    88   LPITEMIDLIST pidlItem;  /* absolute pidl of the item */ 
     88  LPITEMIDLIST pidlItem;  /* absolute pidl of the item */
    8989
    9090} SFOLDER,*LPSFOLDER;
     
    216216 *      GetFileName95
    217217 *
    218  * Creates an Open common dialog box that lets the user select 
     218 * Creates an Open common dialog box that lets the user select
    219219 * the drive, directory, and the name of a file or set of files to open.
    220220 *
     
    251251        return FALSE;
    252252    }
    253    
     253
    254254    /* old style hook messages */
    255255    if (IsHooked(fodInfos))
     
    260260      fodInfos->HookMsg.sharevistring = RegisterWindowMessageA(SHAREVISTRINGA);
    261261    }
    262    
     262
    263263    lRes = DialogBoxIndirectParamA(COMMDLG_hInstance32,
    264264                                  (LPDLGTEMPLATEA) template,
     
    270270    if( lRes == -1)
    271271        return FALSE;
    272    
     272
    273273    return lRes;
    274274}
     
    291291  LPSTR lpstrSavDir = NULL;
    292292  DWORD dwFlags = 0;
    293  
    294   /* Initialise FileOpenDlgInfos structure*/ 
     293
     294  /* Initialise FileOpenDlgInfos structure*/
    295295  fodInfos = (FileOpenDlgInfos*)MemAlloc(sizeof(FileOpenDlgInfos));
    296296  ZeroMemory(fodInfos, sizeof(FileOpenDlgInfos));
    297  
     297
    298298  /* Pass in the original ofn */
    299299  fodInfos->ofnInfos = ofn;
    300  
     300
    301301  /* Save original hInstance value */
    302302  hInstance = ofn->hInstance;
     
    316316  fodInfos->DlgInfos.dwDlgProp = 0;
    317317  fodInfos->DlgInfos.hwndCustomDlg = (HWND)NULL;
    318  
     318
    319319  switch(iDlgType)
    320320  {
     
    400400  FileOpenDlgInfos *fodInfos;
    401401  HINSTANCE hInstance;
    402  
     402
    403403  /* out arguments */
    404404  LPWSTR lpstrFile = NULL;
     
    437437    /* filter is a list...  title\0ext\0......\0\0 */
    438438    s = ofn->lpstrFilter;
    439    
     439
    440440    while (*s) s = s+strlenW(s)+1;
    441441    s++;
     
    528528  }
    529529#endif
    530      
     530
    531531  /* restore saved IN arguments and convert OUT arguments back */
    532532  ofn->Flags = dwFlags;
     
    613613    SetWindowPos(hwndParentDlg, 0, rectParent.left,rectParent.top, (rectParent.right- rectParent.left),
    614614        (rectParent.bottom-rectParent.top),SWP_NOMOVE | SWP_NOZORDER);
    615        
     615
    616616    hwndChild = GetWindow(hwndChildDlg,GW_CHILD);
    617617    if(hwndStc32)
     
    633633          GetWindowRect(hwndChild,&rectCtrl);
    634634          MapWindowPoints( 0, hwndParentDlg,(LPPOINT)&rectCtrl,2);
    635                                  
     635
    636636          /*
    637637            Check the initial position of the controls relative to the initial
     
    651651            rectCtrl.top  += ptMoveCtl.y;
    652652          }
    653                                        
    654           SetWindowPos( hwndChild, 0, rectCtrl.left, rectCtrl.top, 
     653
     654          SetWindowPos( hwndChild, 0, rectCtrl.left, rectCtrl.top,
    655655                                rectCtrl.right-rectCtrl.left,rectCtrl.bottom-rectCtrl.top,
    656656                                SWP_NOSIZE | SWP_NOZORDER );
     
    659659    }
    660660    hwndChild = GetWindow(hwndParentDlg,GW_CHILD);
    661        
     661
    662662    if(hwndStc32)
    663663    {
     
    680680            rectCtrl.top += ptMoveCtl.y;
    681681
    682             SetWindowPos( hwndChild, 0, rectCtrl.left, rectCtrl.top, 
     682            SetWindowPos( hwndChild, 0, rectCtrl.left, rectCtrl.top,
    683683                rectCtrl.right-rectCtrl.left,rectCtrl.bottom-rectCtrl.top,
    684684                SWP_NOSIZE |SWP_NOZORDER );
    685685          }
    686686        } while ((hwndChild=GetWindow( hwndChild, GW_HWNDNEXT )) != (HWND)NULL);
    687       }         
     687      }
    688688    }
    689689}
     
    701701    {
    702702      case WM_INITDIALOG:
    703       {         
     703      {
    704704        fodInfos = (FileOpenDlgInfos *)lParam;
    705705        lParam = (LPARAM) fodInfos->ofnInfos;
     
    708708        if(fodInfos && IsHooked(fodInfos))
    709709          return CallWindowProcA((WNDPROC)fodInfos->ofnInfos->lpfnHook,hwnd,uMsg,wParam,lParam);
    710         return 0;       
    711       } 
     710        return 0;
     711      }
    712712    }
    713713
    714714    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);
    718718}
    719719
     
    757757      if(hChildDlg)
    758758      {
    759         ShowWindow(hChildDlg,SW_SHOW); 
     759        ShowWindow(hChildDlg,SW_SHOW);
    760760        return hChildDlg;
    761761      }
     
    773773      tmplate.cx = rectHwnd.right-rectHwnd.left;
    774774      tmplate.cy = rectHwnd.bottom-rectHwnd.top;
    775        
     775
    776776      return CreateDialogIndirectParamA(fodInfos->ofnInfos->hInstance,&tmplate,hwnd,(DLGPROC)FileOpenDlgProcUserTemplate,(LPARAM)fodInfos);
    777777    }
    778778    return (HWND)NULL;
    779779}
    780  
     780
    781781/***********************************************************************
    782782*          SendCustomDlgNotificationMessage
     
    830830            GetDlgItemTextA(hwnd,IDC_FILENAME,lpstrPath, sizeof(lpstrPath));
    831831            lpstrFileSpec = (LPSTR)PathFindFileNameA(lpstrPath);
    832             if (lpstrFileSpec==lpstrPath) 
     832            if (lpstrFileSpec==lpstrPath)
    833833            {
    834834                char lpstrCurrentDir[MAX_PATH];
     
    838838                    snprintf((LPSTR)lParam,(int)wParam,"%s\\%s",lpstrCurrentDir,lpstrPath);
    839839                reqSize=strlen(lpstrCurrentDir)+1+strlen(lpstrPath)+1;
    840             } 
    841             else 
     840            }
     841            else
    842842            {
    843843                lstrcpynA((LPSTR)lParam,(LPSTR)lpstrPath,(int)wParam);
     
    872872    return TRUE;
    873873}
    874  
     874
    875875/***********************************************************************
    876876 *          FileOpenDlgProc95
     
    883883  TRACE("0x%04x 0x%04x\n", hwnd, uMsg);
    884884#endif
    885  
     885
    886886  switch(uMsg)
    887887  {
     
    890890         FileOpenDlgInfos * fodInfos = (FileOpenDlgInfos *)lParam;
    891891
    892          /* Adds the FileOpenDlgInfos in the property list of the dialog 
     892         /* Adds the FileOpenDlgInfos in the property list of the dialog
    893893            so it will be easily accessible through a GetPropA(...) */
    894894         SetPropA(hwnd, FileOpenDlgInfosStr, (HANDLE) fodInfos);
    895895
    896          fodInfos->DlgInfos.hwndCustomDlg = 
     896         fodInfos->DlgInfos.hwndCustomDlg =
    897897           CreateTemplateDialog((FileOpenDlgInfos *)lParam, hwnd);
    898898
     
    917917      }
    918918      return FALSE;
    919          
     919
    920920    case WM_GETISHELLBROWSER:
    921921      return FILEDLG95_OnWMGetIShellBrowser(hwnd);
     
    933933        if(TTN_GETDISPINFOA == lpnmh->code )
    934934        {
    935             LPNMTTDISPINFOA lpdi = (LPNMTTDISPINFOA)lParam; 
     935            LPNMTTDISPINFOA lpdi = (LPNMTTDISPINFOA)lParam;
    936936            switch(lpnmh->idFrom )
    937937            {
     
    959959                    stringId = 0;
    960960            }
    961             lpdi->hinst = COMMDLG_hInstance32; 
     961            lpdi->hinst = COMMDLG_hInstance32;
    962962            lpdi->lpszText =  (LPSTR) stringId;
    963963        }
     
    995995   { COMDLG32_hInstance, 800 }                  // desktop icon
    996996  };
    997  
     997
    998998  RECT rectTB;
    999  
     999
    10001000  FileOpenDlgInfos *fodInfos = (FileOpenDlgInfos *) GetPropA(hwnd,FileOpenDlgInfosStr);
    10011001
     
    10111011  MapWindowPoints( 0, hwnd,(LPPOINT)&rectTB,2);
    10121012
    1013   fodInfos->DlgInfos.hwndTB = CreateWindowExA(0, TOOLBARCLASSNAMEA, (LPSTR) NULL, 
     1013  fodInfos->DlgInfos.hwndTB = CreateWindowExA(0, TOOLBARCLASSNAMEA, (LPSTR) NULL,
    10141014        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,
    10181018        rectTB.left,rectTB.top, rectTB.right-rectTB.left, rectTB.bottom-rectTB.top,
    10191019        SWP_SHOWWINDOW | SWP_NOACTIVATE | SWP_NOZORDER );
     
    10271027
    10281028  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);
    10301030
    10311031  /* Set the window text with the text specified in the OPENFILENAME structure */
     
    10671067     are hidden and we are not using a custom template */
    10681068  if ( (fodInfos->ofnInfos->Flags & OFN_HIDEREADONLY) &&
    1069        (!(fodInfos->ofnInfos->Flags & 
     1069       (!(fodInfos->ofnInfos->Flags &
    10701070         (OFN_SHOWHELP|OFN_ENABLETEMPLATE|OFN_ENABLETEMPLATEHANDLE))))
    10711071  {
     
    10761076    /* subtract the height of the help button plus the space between
    10771077       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),
    10801080                 SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOZORDER);
    10811081  }
     
    11021102  FileOpenDlgInfos *fodInfos = (FileOpenDlgInfos *) lParam;
    11031103
    1104   TRACE("dir=%s file=%s\n", 
     1104  TRACE("dir=%s file=%s\n",
    11051105  fodInfos->ofnInfos->lpstrInitialDir, fodInfos->ofnInfos->lpstrFile);
    11061106
    11071107#ifdef __WIN32OS2__
    1108   /*@PF 
     1108  /*@PF
    11091109  How can Wine miss this?? Very common situation for Windows apps!
    11101110  If InitialDir is NULL and we have full blown path in lpstrFile we set
     
    11121112
    11131113  Q: What about Unicode?
    1114  
     1114
    11151115  */
    11161116
    1117   if (fodInfos->ofnInfos->lpstrInitialDir == NULL && fodInfos->ofnInfos->lpstrFile && 
     1117  if (fodInfos->ofnInfos->lpstrInitialDir == NULL && fodInfos->ofnInfos->lpstrFile &&
    11181118    !PathIsRelativeA(fodInfos->ofnInfos->lpstrFile) &&
    11191119    PathGetDriveNumberA(fodInfos->ofnInfos->lpstrFile) != -1)
    11201120  {
    1121    dopstr = HEAP_strdupA(GetProcessHeap(), 0,fodInfos->ofnInfos->lpstrFile);     
     1121   dopstr = HEAP_strdupA(GetProcessHeap(), 0,fodInfos->ofnInfos->lpstrFile);
    11221122   *strrchr(dopstr,'\\') = '\0';
    11231123   fodInfos->ofnInfos->lpstrInitialDir = dopstr;
     
    11741174   fodInfos->ofnInfos->lpstrInitialDir = NULL;
    11751175   HEAP_free(dopstr);
    1176   } 
     1176  }
    11771177#endif
    11781178  return TRUE;
     
    12611261  /* Do not use the listview selection anymore */
    12621262  fodInfos->DlgInfos.dwDlgProp &= ~FODPROP_USEVIEW;
    1263   return 0; 
     1263  return 0;
    12641264}
    12651265
     
    12781278  SetWindowLongA(hwnd,DWL_MSGRESULT,(LONG)fodInfos->Shell.FOIShellBrowser);
    12791279
    1280   return TRUE; 
     1280  return TRUE;
    12811281}
    12821282
     
    12841284/***********************************************************************
    12851285 *      FILEDLG95_OnOpenMultipleFiles
    1286  *     
     1286 *
    12871287 * Handles the opening of multiple files.
    12881288 *
     
    13011301  lpstrFile = fodInfos->ofnInfos->lpstrFile;
    13021302  lpstrFile[0] = '\0';
    1303  
     1303
    13041304  SHGetPathFromIDListA( fodInfos->ShellInfos.pidlAbsCurrent, lpstrPathSpec );
    13051305
     
    13071307      ( fodInfos->ofnInfos->Flags & OFN_FILEMUSTEXIST))
    13081308  {
    1309     LPSTR lpstrTemp = lpstrFileList; 
     1309    LPSTR lpstrTemp = lpstrFileList;
    13101310
    13111311    for ( nCount = 0; nCount < nFileCount; nCount++ )
     
    13321332        return FALSE;
    13331333      }
    1334  
     1334
    13351335      /* move to the next file in the list of files */
    13361336      lpstrTemp += strlen(lpstrTemp) + 1;
     
    13551355 *
    13561356 * Ok button WM_COMMAND message handler
    1357  * 
     1357 *
    13581358 * If the function succeeds, the return value is nonzero.
    13591359 */
     
    13961396      return FALSE;
    13971397  }
    1398  
     1398
    13991399  if(nFileCount > 1)
    14001400  {
     
    14551455  to a folder if the path points to a directory or the last
    14561456  valid element is a directory.
    1457  
     1457
    14581458  valid variables:
    14591459    lpstrPathAndFile: cleaned up path
     
    16571657        {
    16581658          LPSTR lpszTemp;
    1659          
     1659
    16601660          /* fill destination buffer */
    16611661          strcpy(fodInfos->ofnInfos->lpstrFile, lpstrPathAndFile);
     
    16671667          lpszTemp = PathFindFileNameA(lpstrPathAndFile);
    16681668          fodInfos->ofnInfos->nFileOffset = lpszTemp - lpstrPathAndFile;
    1669  
     1669
    16701670          /* set extension offset */
    16711671          lpszTemp = PathFindExtensionA(lpstrPathAndFile);
    16721672          fodInfos->ofnInfos->nFileExtension = (*lpszTemp) ? lpszTemp - lpstrPathAndFile + 1 : 0;
    1673    
     1673
    16741674          /* set the lpstrFileTitle */
    16751675          if(fodInfos->ofnInfos->lpstrFileTitle)
     
    16951695            }
    16961696          }
    1697          
     1697
    16981698          TRACE("close\n");
    16991699          FILEDLG95_Clean(hwnd);
     
    17281728
    17291729  /*
    1730    * Initialisation of the FileOpenDialogInfos structure 
     1730   * Initialisation of the FileOpenDialogInfos structure
    17311731   */
    17321732
     
    17391739  if (!(fodInfos->ofnInfos->Flags & OFN_ALLOWMULTISELECT))
    17401740  {
    1741      fodInfos->ShellInfos.folderSettings.fFlags |= FWF_SINGLESEL; 
     1741     fodInfos->ShellInfos.folderSettings.fFlags |= FWF_SINGLESEL;
    17421742  }
    17431743  fodInfos->ShellInfos.folderSettings.fFlags |= FWF_AUTOARRANGE | FWF_ALIGNLEFT;
     
    17491749
    17501750  /* Construct the IShellBrowser interface */
    1751   fodInfos->Shell.FOIShellBrowser = IShellBrowserImpl_Construct(hwnd); 
    1752    
     1751  fodInfos->Shell.FOIShellBrowser = IShellBrowserImpl_Construct(hwnd);
     1752
    17531753  return NOERROR;
    17541754}
     
    18171817  LPITEMIDLIST pidl;
    18181818  HRESULT hres;
    1819  
     1819
    18201820  TRACE("\n");
    18211821
     
    18501850 *      FILEDLG95_FILETYPE_Init
    18511851 *
    1852  * Initialisation of the file type combo box 
     1852 * Initialisation of the file type combo box
    18531853 */
    18541854static HRESULT FILEDLG95_FILETYPE_Init(HWND hwnd)
     
    18661866    for(;;)
    18671867    {
    1868       /* filter is a list...  title\0ext\0......\0\0 
     1868      /* filter is a list...  title\0ext\0......\0\0
    18691869       * Set the combo item text to the title and the item data
    18701870       *  to the ext
     
    18831883      strcpy(lpstrExt,lpstrPos);
    18841884      lpstrPos += strlen(lpstrPos) + 1;
    1885            
     1885
    18861886      /* Add the item at the end of the combo */
    18871887      CBAddString(fodInfos->DlgInfos.hwndFileTypeCB, lpstrDisplay);
     
    18941894     * FIXME: lpstrCustomFilter not handled at all
    18951895     */
    1896  
     1896
    18971897    /* set default filter index */
    18981898    if(fodInfos->ofnInfos->nFilterIndex == 0 && fodInfos->ofnInfos->lpstrCustomFilter == NULL)
     
    19021902    if ( fodInfos->ofnInfos->nFilterIndex > nFilters )
    19031903      fodInfos->ofnInfos->nFilterIndex = nFilters;
    1904  
     1904
    19051905    /* Set the current index selection. */
    19061906    CBSetCurSel(fodInfos->DlgInfos.hwndFileTypeCB, fodInfos->ofnInfos->nFilterIndex-1);
    1907  
     1907
    19081908    /* Get the corresponding text string from the combo box. */
    19091909    lpstrFilter = (LPSTR) CBGetItemDataPtr(fodInfos->DlgInfos.hwndFileTypeCB,
     
    19111911
    19121912    if ((INT)lpstrFilter == CB_ERR)  /* control is empty */
    1913       lpstrFilter = NULL;       
     1913      lpstrFilter = NULL;
    19141914
    19151915    if(lpstrFilter)
     
    20202020
    20212021}
    2022    
     2022
    20232023/***********************************************************************
    20242024 *      FILEDLG95_LOOKIN_Init
    20252025 *
    2026  * Initialisation of the look in combo box 
     2026 * Initialisation of the look in combo box
    20272027 */
    20282028static HRESULT FILEDLG95_LOOKIN_Init(HWND hwndCombo)
     
    21272127  {
    21282128    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 );
    21352135  }
    21362136  else
    21372137  {
    21382138    ilItemImage = (HIMAGELIST) SHGetFileInfoA ((LPCSTR) tmpFolder->pidlItem,
    2139                                                   0, 
    2140                                                   &sfi, 
     2139                                                  0,
     2140                                                  &sfi,
    21412141                                                  sizeof (SHFILEINFOA),
    2142                                                   SHGFI_PIDL | SHGFI_SMALLICON | 
    2143                                                   SHGFI_SYSICONINDEX | 
     2142                                                  SHGFI_PIDL | SHGFI_SMALLICON |
     2143                                                  SHGFI_SYSICONINDEX |
    21442144                                                  SHGFI_DISPLAYNAME);
    21452145  }
     
    21642164    iIndentation = 0;
    21652165    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
    21702170                                                | SHGFI_SYSICONINDEX | SHGFI_DISPLAYNAME  );
    21712171
     
    21912191  rectText.bottom =
    21922192          (pDIStruct->rcItem.top + pDIStruct->rcItem.bottom + tm.tmHeight) / 2;
    2193  
     2193
    21942194  /* Draw the icon from the image list */
    21952195  ImageList_Draw(ilItemImage,
    21962196                 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 );
    22012201
    22022202  /* Draw the associated text */
     
    22252225    {
    22262226      LPSFOLDER tmpFolder;
    2227       int iItem; 
     2227      int iItem;
    22282228
    22292229      iItem = CBGetCurSel(fodInfos->DlgInfos.hwndLookInCB);
     
    22422242      break;
    22432243    }
    2244      
     2244
    22452245  }
    22462246  return FALSE;
     
    22672267  if(!(liInfos = (LookInInfos *)GetPropA(hwnd,LookInInfosStr)))
    22682268    return -1;
    2269    
     2269
    22702270  tmpFolder = MemAlloc(sizeof(SFOLDER));
    22712271  tmpFolder->m_iIndent = 0;
     
    22822282  if(tmpFolder->m_iIndent > liInfos->iMaxIndentation)
    22832283    liInfos->iMaxIndentation = tmpFolder->m_iIndent;
    2284  
     2284
    22852285  sfi.dwAttributes = SFGAO_FILESYSANCESTOR | SFGAO_FILESYSTEM;
    22862286  SHGetFileInfoA((LPSTR)pidl,
     
    22882288                  &sfi,
    22892289                  sizeof(sfi),
    2290                   SHGFI_DISPLAYNAME | SHGFI_SYSICONINDEX 
     2290                  SHGFI_DISPLAYNAME | SHGFI_SYSICONINDEX
    22912291                  | SHGFI_PIDL | SHGFI_SMALLICON | SHGFI_ATTRIBUTES | SHGFI_ATTR_SPECIFIED);
    22922292
     
    22962296  {
    22972297    int iItemID;
    2298  
     2298
    22992299    TRACE("-- Add %s at %u\n", sfi.szDisplayName, tmpFolder->m_iIndent);
    23002300
     
    23222322 *      FILEDLG95_LOOKIN_InsertItemAfterParent
    23232323 *
    2324  * Insert an item below its parent 
     2324 * Insert an item below its parent
    23252325 */
    23262326static int FILEDLG95_LOOKIN_InsertItemAfterParent(HWND hwnd,LPITEMIDLIST pidl)
    23272327{
    2328  
     2328
    23292329  LPITEMIDLIST pidlParent = GetParentPidl(pidl);
    23302330  int iParentPos;
     
    23812381    }
    23822382  }
    2383  
     2383
    23842384  CBSetCurSel(hwnd,iItemPos);
    23852385  liInfos->uSelectedItem = iItemPos;
     
    25032503      {
    25042504        pidl = GetPidlFromDataObject( fodInfos->Shell.FOIDataObject, nFileToOpen+1 );
    2505    
     2505
    25062506        if (pidl)
    25072507        {
     
    26212621
    26222622        TRACE("nStrLen=%u str=%s\n", nStrLen, lpstrEdit);
    2623        
     2623
    26242624        /* we might get single filename without any '"',
    26252625         * so we need nStrLen + terminating \0 + end-of-list \0 */
     
    26422642            (*sizeUsed)++;
    26432643            nFileCount++;
    2644           } 
     2644          }
    26452645          nStrCharCount++;
    26462646        }
     
    27032703LPITEMIDLIST GetPidlFromDataObject ( IDataObject *doSelected, UINT nPidlIndex)
    27042704{
    2705      
     2705
    27062706    STGMEDIUM medium;
    27072707    FORMATETC formatetc;
    27082708    LPITEMIDLIST pidl = NULL;
    2709    
     2709
    27102710    TRACE("sv=%p index=%u\n", doSelected, nPidlIndex);
    2711    
     2711
    27122712    /* Set the FORMATETC structure*/
    27132713    SETDefFormatEtc(formatetc, RegisterClipboardFormatA(CFSTR_SHELLIDLIST), TYMED_HGLOBAL);
     
    27632763 *      GetName
    27642764 *
    2765  * Get the pidl's display name (relative to folder) and 
     2765 * Get the pidl's display name (relative to folder) and
    27662766 * put it in lpstrFileName.
    2767  * 
     2767 *
    27682768 * Return NOERROR on success,
    27692769 * E_FAIL otherwise
     
    27972797 *      GetShellFolderFromPidl
    27982798 *
    2799  * pidlRel is the item pidl relative 
     2799 * pidlRel is the item pidl relative
    28002800 * Return the IShellFolder of the absolute pidl
    28012801 */
     
    28332833
    28342834  TRACE("%p\n", pidl);
    2835  
     2835
    28362836  pidlParent = COMDLG32_PIDL_ILClone(pidl);
    28372837  COMDLG32_PIDL_ILRemoveLastID(pidlParent);
    2838      
     2838
    28392839  return pidlParent;
    28402840}
     
    28432843 *      GetPidlFromName
    28442844 *
    2845  * returns the pidl of the file name relative to folder 
     2845 * returns the pidl of the file name relative to folder
    28462846 * NULL if an error occurred
    28472847 */
     
    28572857  if(!*lpcstrFileName) return NULL;
    28582858
    2859   MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,lpcstrFileName,-1,(LPWSTR)lpwstrDirName,MAX_PATH); 
     2859  MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,lpcstrFileName,-1,(LPWSTR)lpwstrDirName,MAX_PATH);
    28602860
    28612861  if(!lpsf)
     
    28672867  else
    28682868  {
    2869     IShellFolder_ParseDisplayName(lpsf, 0, NULL, (LPWSTR)lpwstrDirName, &ulEaten, &pidl, NULL); 
     2869    IShellFolder_ParseDisplayName(lpsf, 0, NULL, (LPWSTR)lpwstrDirName, &ulEaten, &pidl, NULL);
    28702870  }
    28712871  return pidl;
     
    28782878        ULONG uAttr  = SFGAO_FOLDER | SFGAO_HASSUBFOLDER;
    28792879        HRESULT ret;
    2880        
     2880
    28812881        TRACE("%p, %p\n", psf, pidl);
    28822882
     
    29192919
    29202920  return bBrowseSelFolder;
    2921 } 
     2921}
    29222922
    29232923/*
  • TabularUnified branches/gcc-kmk/src/crtdll/old/crtdll.cpp

    r4667 r21720  
    33/*
    44 * The C RunTime DLL
    5  * 
     5 *
    66 * Implements C run-time functionality as known from UNIX.
    77 *
    8  * TODO: 
     8 * TODO:
    99 *   - Check setjmp(3)
    1010 *   - fix *ALL* functions for the FS: wrapper problem
     
    3939
    4040#include <math.h>
    41 #include <libc\locale.h>
     41#include <libc/locale.h>
    4242#include <signal.h>
    4343#include <io.h>
     
    5353#include <heap.h>
    5454#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>
    5858#include "signal.h"
    5959
     
    8080{
    8181  FS_OS2
    82    
     82
    8383    if (fdwReason == DLL_PROCESS_ATTACH) {
    8484      _fdopen(0,"r");
     
    9292        CRTDLL_hHeap = 0;
    9393      }
    94  
     94
    9595  FS_WIN32
    9696  return TRUE;
     
    410410 */
    411411int * CDECL CRTDLL___doserrno()
    412 {       
     412{
    413413        dprintf2(("CRTDLL: __doserrno\n"));
    414414        return (__doserrno());
     
    525525 */
    526526void CDECL CRTDLL__beep(unsigned nFreq, unsigned nDur)
    527 {       
     527{
    528528  dprintf2(("_beep\n"));
    529529  Beep(nFreq,nDur);
     
    693693{
    694694  dprintf2(("CRTDLL: _close\n"));
    695  
     695
    696696  return CloseHandle(handle);
    697697}
     
    832832 */
    833833INT CDECL CRTDLL__except_handler2 ( PEXCEPTION_RECORD rec,
    834         PEXCEPTION_FRAME frame, PCONTEXT context, 
     834        PEXCEPTION_FRAME frame, PCONTEXT context,
    835835        PEXCEPTION_FRAME  *dispatcher)
    836836{
     
    14831483    DWORD access = 0, creation = 0;
    14841484    HFILE ret;
    1485    
     1485
    14861486    switch(flags & 3)
    14871487    {
     
    15091509    if (flags & 0x0008) /* O_APPEND */
    15101510        dprintf2(("O_APPEND not supported\n" ));
    1511     if (flags & 0xf0f4) 
     1511    if (flags & 0xf0f4)
    15121512      dprintf2(("CRTDLL_open file unsupported flags 0x%04x\n",flags));
    15131513    /* End Fixme */
     
    15271527  dprintf2(("CRTDLL: _open_osfhandle\n"));
    15281528HFILE handle;
    1529  
     1529
    15301530        switch (osfhandle) {
    15311531        case STD_INPUT_HANDLE :
     
    16331633              return -1;
    16341634            }
    1635           errno = saved_errno;               
    1636           if (j == 1 && c == '\n')           
     1635          errno = saved_errno;
     1636          if (j == 1 && c == '\n')
    16371637            {
    16381638              dst[0] = '\n';
     
    17731773 *                  _sleep           (CRTDLL.265)
    17741774 */
    1775 VOID CDECL CRTDLL__sleep(unsigned long timeout) 
     1775VOID CDECL CRTDLL__sleep(unsigned long timeout)
    17761776{
    17771777  dprintf2(("_sleep for %ld milliseconds\n",timeout));
     
    19271927  return (_tempnam(dir, prefix));
    19281928}
    1929        
     1929
    19301930
    19311931/*********************************************************************
     
    19921992      return EOF;
    19931993    }
    1994  
     1994
    19951995    ret=unlink(full_name.long_name);
    19961996    dprintf2(("(%s unix %s)\n",
     
    22162216  int left, right, median, sign;
    22172217  const void *element;
    2218  
     2218
    22192219  if (width == 0)
    22202220    return 0;
     
    25072507}
    25082508
    2509  
     2509
    25102510/*********************************************************************
    25112511 *                  free          (CRTDLL.375)
     
    27732773 *                  ldexp       (CRTDLL.417)
    27742774 */
    2775 double CDECL CRTDLL_ldexp( double x, int exp ) 
     2775double CDECL CRTDLL_ldexp( double x, int exp )
    27762776{
    27772777  dprintf2(("CRTDLL: ldexp\n"));
     
    27832783 *                  ldiv        (CRTDLL.418)
    27842784 */
    2785 ldiv_t CDECL CRTDLL_ldiv( long int numer, long int denom ) 
     2785ldiv_t CDECL CRTDLL_ldiv( long int numer, long int denom )
    27862786{
    27872787  dprintf2(("CRTDLL: ldiv\n"));
     
    28832883 *                  pow      (CRTDLL.436)
    28842884 */
    2885 double CDECL CRTDLL_pow( double x, double y )   
     2885double CDECL CRTDLL_pow( double x, double y )
    28862886{
    28872887    dprintf2(("CRTDLL: pow(%08xh, %08xh)\n",x, y));
     
    30153015 *                  setbuf      (CRTDLL.449)
    30163016 */
    3017 void CDECL CRTDLL_setbuf( FILE *fp, char *buf ) 
     3017void CDECL CRTDLL_setbuf( FILE *fp, char *buf )
    30183018{
    30193019  dprintf2(("CRTDLL: setbuf\n"));
     
    31783178}
    31793179
    3180        
     3180
    31813181/*********************************************************************
    31823182 *                  tmpnam           (CRTDLL.487)
  • TabularUnified branches/gcc-kmk/src/crypt32/decode.c

    r21354 r21720  
    4848#include "winnls.h"
    4949#include "snmp.h"
    50 #include "wine\debug.h"
    51 #include "wine\exception.h"
     50#include "wine/debug.h"
     51#include "wine/exception.h"
    5252#include "crypt32_private.h"
    5353
     
    784784        BYTE lenBytes = GET_LEN_BYTES(pbEncoded[1]);
    785785        DWORD bytesNeeded = sizeof(CRYPT_DER_BLOB);
    786        
     786
    787787        if (!(dwFlags & CRYPT_DECODE_NOCOPY_FLAG))
    788788            bytesNeeded += 1 + lenBytes + dataLen;
     
    15621562
    15631563                    value->Value.cbData = MultiByteToWideChar(CP_UTF8, 0,
    1564                      (LPCSTR)pbEncoded + 1 + lenBytes, dataLen, 
     1564                     (LPCSTR)pbEncoded + 1 + lenBytes, dataLen,
    15651565                     str, bytesNeeded - sizeof(CERT_NAME_VALUE)) * 2;
    15661566                    break;
     
    27412741       offsetof(CRYPT_ALGORITHM_IDENTIFIER, pszObjId), 0 },
    27422742     { 0, offsetof(CRYPT_ALGORITHM_IDENTIFIER, Parameters),
    2743        CRYPT_AsnDecodeCopyBytes, sizeof(CRYPT_OBJID_BLOB), TRUE, TRUE, 
     2743       CRYPT_AsnDecodeCopyBytes, sizeof(CRYPT_OBJID_BLOB), TRUE, TRUE,
    27442744       offsetof(CRYPT_ALGORITHM_IDENTIFIER, Parameters.pbData), 0 },
    27452745    };
     
    34213421        struct AsnDecodeSequenceItem items[] = {
    34223422         { 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,
    34243424           offsetof(CERT_BASIC_CONSTRAINTS_INFO, SubjectType.pbData), 0 },
    34253425         { ASN_INTEGER, offsetof(CERT_BASIC_CONSTRAINTS_INFO,
  • TabularUnified branches/gcc-kmk/src/custombuild/guid.c

    r21494 r21720  
    1010#include "shlobj.h"
    1111#include "docobj.h"
    12 #include "..\shell32\shellfolder.h"
     12#include "../shell32/shellfolder.h"
    1313
    1414#include "wine/obj_inplace.h"
     
    1919#include "wine/obj_clientserver.h"
    2020#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"
    2323
    2424#include "wine/obj_oleview.h"
     
    138138        (*pSid)->SubAuthority[7] = nSubAuthority7;
    139139
    140   if(pIdentifierAuthority) 
     140  if(pIdentifierAuthority)
    141141        memcpy((PVOID)&(*pSid)->IdentifierAuthority, (PVOID)pIdentifierAuthority, sizeof(SID_IDENTIFIER_AUTHORITY));
    142142  return TRUE;
  • TabularUnified branches/gcc-kmk/src/driverdll/testdrv.cpp

    r6646 r21720  
    2323#include <win32api.h>
    2424#include <misc.h>
    25 #include <win\winioctl.h>
     25#include <win/winioctl.h>
    2626
    2727#define TESTDRV_CATEGORY    0x40
  • TabularUnified branches/gcc-kmk/src/gdi32/font.cpp

    r10612 r21720  
    3636#include "unicode.h"
    3737#include <heapstring.h>
    38 #include <win\options.h>
     38#include <win/options.h>
    3939#include <wprocess.h>
    4040#include <odininst.h>
  • TabularUnified branches/gcc-kmk/src/guidlib/guid.c

    r21494 r21720  
    1212#include "olectl.h"
    1313#include "dinput.h"
    14 //#include "..\shell32\shellfolder.h"
     14//#include "../shell32/shellfolder.h"
    1515
    1616#include "wine/obj_inplace.h"
  • TabularUnified branches/gcc-kmk/src/iphlpapi/iphlwrap.h

    r7973 r21720  
    22#define __IPHLWRAP_H__
    33
    4 #include <sys\socket.h>
    5 #include <sys\ioctl.h>
     4#include <sys/socket.h>
     5#include <sys/ioctl.h>
    66#include <netdb.h>
    7 #include <netinet\in.h>
    8 #include <netinet\tcp.h>
     7#include <netinet/in.h>
     8#include <netinet/tcp.h>
    99#include <nerrno.h>
    1010
     
    3434
    3535    return yyrc;
    36 } 
     36}
    3737
    3838#undef  ioctl
     
    4848
    4949    return yyrc;
    50 } 
     50}
    5151#undef  res_init
    5252#define res_init _res_init
     
    6161
    6262    return yyrc;
    63 } 
     63}
    6464
    6565#undef  sock_init
     
    7575
    7676    return yyrc;
    77 } 
     77}
    7878
    7979#undef  sock_errno
     
    8686    psock_errno(a);
    8787    SetFS(sel);
    88 } 
     88}
    8989
    9090#undef  psock_errno
     
    100100
    101101    return yyrc;
    102 } 
     102}
    103103
    104104#undef  socket
     
    114114
    115115    return yyrc;
    116 } 
     116}
    117117
    118118#undef  soclose
     
    128128
    129129    return yyrc;
    130 } 
     130}
    131131
    132132#undef  so_cancel
     
    142142
    143143    return yyrc;
    144 } 
     144}
    145145
    146146#undef  gethostname
     
    156156
    157157    return yyrc;
    158 } 
     158}
    159159
    160160#undef  gethostbyname
     
    170170
    171171    return yyrc;
    172 } 
     172}
    173173
    174174#undef  gethostbyaddr
    175175#define gethostbyaddr _gethostbyaddr
    176176
    177 #endif 
     177#endif
    178178
    179179
  • TabularUnified branches/gcc-kmk/src/kernel32/HandleManager.cpp

    r21717 r21720  
    7070
    7171#include <vmutex.h>
    72 #include <win\thread.h>
     72#include <win/thread.h>
    7373
    7474#include <odinapi.h>
  • TabularUnified branches/gcc-kmk/src/kernel32/char.cpp

    r7886 r21720  
    2626
    2727#include <misc.h>
    28 #include <wine\unicode.h>
     28#include <wine/unicode.h>
    2929
    3030
  • TabularUnified branches/gcc-kmk/src/kernel32/directory.cpp

    r21302 r21720  
    66 * Copyright 1998 Sander van Leeuwen
    77 *
    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)
    99 *
    1010 * Parts based on Wine code (991031) (files\directory.c)
     
    1414 * Copyright 1995 Alexandre Julliard
    1515 *
    16  * TODO: 
     16 * TODO:
    1717 *  - System/window directories should be created by install program!
    1818 *
     
    3434#include <options.h>
    3535#include "initterm.h"
    36 #include <win\file.h>
     36#include <win/file.h>
    3737#include <string.h>
    3838#include "oslibdos.h"
     
    8080   len = strlen(DIR_System);
    8181   if(DIR_System[len-1] == '\\') {
    82         DIR_System[len-1] = 0; 
     82        DIR_System[len-1] = 0;
    8383   }
    8484   len = PROFILE_GetOdinIniString(ODINDIRECTORIES,"WINDOWS","",DIR_Windows,sizeof(DIR_Windows));
    8585   if (len > 2) {
    8686        if(DIR_Windows[len-1] == '\\') {
    87                 DIR_Windows[len-1] = 0; 
     87                DIR_Windows[len-1] = 0;
    8888        }
    8989   }
     
    116116   len = strlen(DIR_System);
    117117   if(DIR_System[len-1] == '\\') {
    118         DIR_System[len-1] = 0; 
     118        DIR_System[len-1] = 0;
    119119   }
    120120   strcpy(DIR_Windows, szWindowsDir);
    121121   len = strlen(DIR_Windows);
    122122   if(DIR_Windows[len-1] == '\\') {
    123         DIR_Windows[len-1] = 0; 
     123        DIR_Windows[len-1] = 0;
    124124   }
    125125
     
    146146  rc = OSLibDosQueryDir(nBufferLength, lpBuffer);
    147147  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));
    151151  return rc;
    152152}
     
    196196    return FALSE;
    197197  }
    198  
     198
    199199  // cut off trailing backslashes
    200200  // not if a process wants to change to the root directory
     
    264264
    265265  int len = strlen(lpstrDirectory);
    266  
     266
    267267  // cut off trailing backslashes
    268268  if ( (lpstrDirectory[len - 1] == '\\') ||
     
    275275    lpstrDirectory = lpTemp;
    276276  }
    277  
     277
    278278  dprintf(("CreateDirectoryA %s", lpstrDirectory));
    279  
     279
    280280  // Creation of an existing directory will fail (verified in NT4 & XP)
    281281  DWORD dwAttr = GetFileAttributesA(lpstrDirectory);
    282   if(dwAttr != -1) 
     282  if(dwAttr != -1)
    283283  {
    284284      if (dwAttr & FILE_ATTRIBUTE_DIRECTORY)
     
    287287          return FALSE;
    288288      }
    289   } 
     289  }
    290290  return(OSLibDosCreateDirectory(lpstrDirectory));
    291291}
     
    437437    asciibuffer = (char *)alloca(uSize+1);
    438438
    439   if(lpBuffer && asciibuffer == NULL) 
     439  if(lpBuffer && asciibuffer == NULL)
    440440  {
    441441    DebugInt3();
     
    445445  if(rc && asciibuffer)
    446446    AsciiToUnicode(asciibuffer, lpBuffer);
    447  
     447
    448448  return(rc);
    449449}
     
    495495    asciibuffer = (char *)alloca(uSize+1);
    496496
    497   if(lpBuffer && asciibuffer == NULL) 
     497  if(lpBuffer && asciibuffer == NULL)
    498498  {
    499499    DebugInt3();
     
    503503  if(rc && asciibuffer)
    504504    AsciiToUnicode(asciibuffer, lpBuffer);
    505  
     505
    506506  return(rc);
    507507}
     
    524524{
    525525  int len = strlen(lpstrDirectory);
    526  
     526
    527527  if(lpstrDirectory == NULL) {
    528528     SetLastError(ERROR_INVALID_PARAMETER);
     
    539539    lpstrDirectory = lpTemp;
    540540  }
    541  
     541
    542542  dprintf(("RemoveDirectory %s", lpstrDirectory));
    543543
     
    619619       those (according to SDK docs) */
    620620    if ((path != NULL) && strchr(path, ';')) {
    621         ret = OSLibDosSearchPath(OSLIB_SEARCHDIR, (LPSTR)path, (LPSTR)name, 
     621        ret = OSLibDosSearchPath(OSLIB_SEARCHDIR, (LPSTR)path, (LPSTR)name,
    622622                                 full_name, MAX_PATHNAME_LEN);
    623623        goto done;
     
    647647        name = tmp;
    648648    }
    649    
     649
    650650    /* If we have an explicit path, everything's easy */
    651651
     
    704704 *             filename is returned.
    705705 *    Failure: Zero
    706  * 
     706 *
    707707 * NOTES
    708708 *    Should call SetLastError(but currently doesn't).
     
    732732    LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name );
    733733    LPSTR extA  = HEAP_strdupWtoA( GetProcessHeap(), 0, ext );
    734  
     734
    735735    dprintf(("SearchPathA %s %s %s", pathA, nameA, extA));
    736736    DWORD ret = DIR_SearchPath( pathA, nameA, extA, (LPSTR)full_name );
    737  
     737
    738738    if (NULL != extA)
    739739      HeapFree( GetProcessHeap(), 0, extA );
    740  
     740
    741741    if (NULL != nameA)
    742742      HeapFree( GetProcessHeap(), 0, nameA );
    743  
     743
    744744    if (NULL != pathA)
    745745      HeapFree( GetProcessHeap(), 0, pathA );
    746  
     746
    747747    if (!ret) return 0;
    748748
  • TabularUnified branches/gcc-kmk/src/kernel32/heapstring.cpp

    r21361 r21720  
    2727#include <wcstr.h>
    2828#include "heap.h"
    29 #include <wine\unicode.h>
     29#include <wine/unicode.h>
    3030#include "misc.h"
    3131#include "codepage.h"
  • TabularUnified branches/gcc-kmk/src/kernel32/hmdevio.cpp

    r21302 r21720  
    2525#include <win32api.h>
    2626#include <misc.h>
    27 #include <win\winioctl.h>
     27#include <win/winioctl.h>
    2828#include "hmdevio.h"
    2929#include "exceptutil.h"
     
    4747 DWORD rc;
    4848
    49     for(int i=0;i<nrKnownDrivers;i++) 
     49    for(int i=0;i<nrKnownDrivers;i++)
    5050    {
    5151            driver = new HMDeviceDriver(knownDriver[i].szWin32Name,
     
    101101                        if (rc != NO_ERROR)                                  /* check for errors */
    102102                          dprintf(("KERNEL32:RegisterDevices: registering %s failed with %u.\n", szDrvName, rc));
    103                      
     103
    104104                        // @@@PH
    105105                        // there should be an symbolic link:
     
    109109                rc = 0;
    110110            }
    111         }   
     111        }
    112112        RegCloseKey(hkDrivers);
    113113    }
     
    117117//******************************************************************************
    118118//******************************************************************************
    119 BOOL WIN32API RegisterCustomDriver(PFNDRVOPEN pfnDriverOpen, PFNDRVCLOSE pfnDriverClose, 
     119BOOL WIN32API RegisterCustomDriver(PFNDRVOPEN pfnDriverOpen, PFNDRVCLOSE pfnDriverClose,
    120120                                   PFNDRVIOCTL pfnDriverIOCtl, PFNDRVREAD pfnDriverRead,
    121121                                   PFNDRVWRITE pfnDriverWrite, PFNDRVCANCELIO pfnDriverCancelIo,
     
    141141//******************************************************************************
    142142//******************************************************************************
    143 HMDeviceDriver::HMDeviceDriver(LPCSTR lpDeviceName, LPSTR lpOS2DevName, BOOL fCreate, 
     143HMDeviceDriver::HMDeviceDriver(LPCSTR lpDeviceName, LPSTR lpOS2DevName, BOOL fCreate,
    144144                               WINIOCTL pDevIOCtl)
    145145                : HMDeviceHandler(lpDeviceName)
     
    215215  dprintf(("DosOpen %s returned %d\n", szOS2Name, rc));
    216216
    217   if(rc == NO_ERROR) 
     217  if(rc == NO_ERROR)
    218218  {
    219219    pHMHandleData->hHMHandle = hfFileHandle;
    220220    return (NO_ERROR);
    221221  }
    222   else 
     222  else
    223223    return(error2WinError(rc));
    224224}
     
    259259//******************************************************************************
    260260//******************************************************************************
    261 HMCustomDriver::HMCustomDriver(PFNDRVOPEN pfnDriverOpen, PFNDRVCLOSE pfnDriverClose, 
     261HMCustomDriver::HMCustomDriver(PFNDRVOPEN pfnDriverOpen, PFNDRVCLOSE pfnDriverClose,
    262262                               PFNDRVIOCTL pfnDriverIOCtl, PFNDRVREAD pfnDriverRead,
    263263                               PFNDRVWRITE pfnDriverWrite, PFNDRVCANCELIO pfnDriverCancelIo,
     
    461461        return FALSE;
    462462    }
    463     return pfnDriverGetOverlappedResult(lpDriverData, pHMHandleData->hHMHandle, pHMHandleData->dwFlags, 
     463    return pfnDriverGetOverlappedResult(lpDriverData, pHMHandleData->hHMHandle, pHMHandleData->dwFlags,
    464464                                        lpOverlapped, lpcbTransfer, fWait, (LPVOID)pHMHandleData->dwUserData);
    465465}
  • TabularUnified branches/gcc-kmk/src/kernel32/hmdisk.cpp

    r9911 r21720  
    1818#include "hmdisk.h"
    1919#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>
    2323#include "oslibdos.h"
    2424#include "osliblvm.h"
     
    4343typedef struct
    4444{
    45     BOOL      fCDIoSupported;   
     45    BOOL      fCDIoSupported;
    4646    ULONG     driveLetter;
    4747    ULONG     driveType;
     
    163163    szDrive[2] = '\0';
    164164
    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))
    167167    {
    168168        int length;
     
    171171            return ERROR_FILE_NOT_FOUND;    //not allowed
    172172        }
    173         if(OSLibLVMStripVolumeName(lpFileName, szVolumeName, sizeof(szVolumeName))) 
     173        if(OSLibLVMStripVolumeName(lpFileName, szVolumeName, sizeof(szVolumeName)))
    174174        {
    175175            BOOL fLVMVolume;
     
    184184                return ERROR_FILE_NOT_FOUND;    //not found
    185185            }
    186             if(szDrive[0] == 0) 
     186            if(szDrive[0] == 0)
    187187            {
    188188                //volume isn't mounted
    189                
     189
    190190                //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);
    192192                fPhysicalDisk    = TRUE;
    193193                dwPhysicalDiskNr = volext.Extents[0].DiskNumber + 1;
     
    211211        else return ERROR_FILE_NOT_FOUND;
    212212    }
    213     else 
    214     if(strncmp(lpFileName, "\\\\.\\PHYSICALDRIVE", 17) == 0) 
     213    else
     214    if(strncmp(lpFileName, "\\\\.\\PHYSICALDRIVE", 17) == 0)
    215215    {
    216216        if(!fPhysicalDiskAccess) {
     
    304304        drvInfo->fLocked   = FALSE;
    305305
    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
    307307        //(no other choice for unmounted volumes)
    308308        drvInfo->fPhysicalDisk    = fPhysicalDisk;
     
    348348        if(pHMHandleData->hHMHandle && drvInfo->dwShare == 0) {
    349349            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))
    351351            {
    352352                dprintf(("Sharing violation while attempting to lock the drive"));
     
    411411        if(hFile && drvInfo->dwShare == 0) {
    412412            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))
    414414            {
    415415                dprintf(("Sharing violation while attempting to lock the drive"));
     
    890890        //label has changed
    891891        //TODO: Find better way to determine if floppy was removed or switched
    892         if(drvInfo->driveType != DRIVE_FIXED) 
     892        if(drvInfo->driveType != DRIVE_FIXED)
    893893        {
    894894            rc = OSLibDosQueryVolumeSerialAndName(1 + drvInfo->driveLetter - 'A', &volumelabel, NULL, 0);
     
    14391439        return (ret == ERROR_SUCCESS);
    14401440    }
    1441    
     1441
    14421442    case IOCTL_CDROM_RAW_READ:
    14431443    {
    14441444#pragma pack(1)
    1445        struct 
     1445       struct
    14461446       {
    14471447        ULONG       ID_code;
     
    14971497
    14981498        if(lpBytesReturned) {
    1499             *lpBytesReturned = dwDataSize; 
     1499            *lpBytesReturned = dwDataSize;
    15001500        }
    15011501
     
    16331633    case IOCTL_SCSI_GET_CAPABILITIES:
    16341634    {
    1635         PIO_SCSI_CAPABILITIES pPacket = (PIO_SCSI_CAPABILITIES)lpOutBuffer; 
     1635        PIO_SCSI_CAPABILITIES pPacket = (PIO_SCSI_CAPABILITIES)lpOutBuffer;
    16361636
    16371637        if(nOutBufferSize < sizeof(IO_SCSI_CAPABILITIES) ||
     
    16771677            return FALSE;
    16781678        }
    1679        
     1679
    16801680        if(!drvInfo || drvInfo->fCDIoSupported == FALSE) {
    16811681            dprintf(("os2cdrom.dmd CD interface not supported!!"));
     
    18421842        if((nNumberOfBytesToRead+offset) & 0xfff)
    18431843            nrpages++;
    1844    
     1844
    18451845        map->commitRange((ULONG)lpBuffer, offset & ~0xfff, TRUE, nrpages);
    18461846        map->Release();
     
    21062106        if((nNumberOfBytesToWrite+offset) & 0xfff)
    21072107            nrpages++;
    2108    
     2108
    21092109        map->commitRange((ULONG)lpBuffer, offset & ~0xfff, TRUE, nrpages);
    21102110        map->Release();
     
    22022202
    22032203    dprintf2(("KERNEL32: HMDeviceDiskClass::GetFileSize %s(%08xh,%08xh)\n",
    2204               lpHMDeviceName, pHMHandleData, lpdwFileSizeHigh)); 
     2204              lpHMDeviceName, pHMHandleData, lpdwFileSizeHigh));
    22052205
    22062206    //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  
    3434#include "oslibmem.h"
    3535
    36 #include <win\thread.h>
     36#include <win/thread.h>
    3737#include "thread.h"
    3838#include "asmutil.h"
     
    6565    HANDLE       hThread = pHMHandleData->hHMHandle;
    6666
    67     if(lpIDThread == NULL) { 
     67    if(lpIDThread == NULL) {
    6868        lpIDThread = &threadid;
    6969    }
     
    124124
    125125    *lpIDThread = MAKE_THREADID(O32_GetCurrentProcessId(), *lpIDThread);
    126    
     126
    127127    TEB *teb = GetTEBFromThreadHandle(hThread);
    128128    if(teb) {
     
    134134
    135135    dprintf(("CreateThread created %08x, id %x", pHMHandleData->hHMHandle, *lpIDThread));
    136  
     136
    137137    return pHMHandleData->hHMHandle;
    138138}
     
    603603           pHMHandleData->hHMHandle,
    604604           dwTimeout));
    605  
     605
    606606  //This doesn't work very well in Open32 (object's state never signaled)
    607607  if(threadobj && threadobj->dwState == THREAD_TERMINATED) {
  • TabularUnified branches/gcc-kmk/src/kernel32/lang.cpp

    r21302 r21720  
    1919#include <odinwrap.h>
    2020#include <heapstring.h>
    21 #include <win\winreg.h>
     21#include <win/winreg.h>
    2222#include <winos2def.h>
    2323#include "unicode.h"
  • TabularUnified branches/gcc-kmk/src/kernel32/mmap.cpp

    r21716 r21720  
    2828#include <stdlib.h>
    2929#include <string.h>
    30 #include <win\virtual.h>
     30#include <win/virtual.h>
    3131#include <odincrt.h>
    3232#include <handlemanager.h>
  • TabularUnified branches/gcc-kmk/src/kernel32/mmapdup.cpp

    r21716 r21720  
    2828#include <stdlib.h>
    2929#include <string.h>
    30 #include <win\virtual.h>
     30#include <win/virtual.h>
    3131#include <odincrt.h>
    3232#include <handlemanager.h>
     
    3535#include "oslibmem.h"
    3636#include "winimagepeldr.h"
    37 #include <custombuild.h> 
     37#include <custombuild.h>
    3838
    3939#define DBG_LOCALLOG    DBG_mmapdup
     
    4848//
    4949//******************************************************************************
    50 Win32MemMapDup::Win32MemMapDup(Win32MemMap *parent, HANDLE hFile, ULONG size, 
     50Win32MemMapDup::Win32MemMapDup(Win32MemMap *parent, HANDLE hFile, ULONG size,
    5151                               ULONG fdwProtect, LPSTR lpszName) :
    5252          Win32MemMap(hFile, size, fdwProtect, lpszName)
     
    123123    if((fdwAccess & FILE_MAP_READ) && !(mProtFlags & (PAGE_READWRITE|PAGE_READONLY)))
    124124        goto parmfail;
    125    
     125
    126126    if (fdwAccess != FILE_MAP_ALL_ACCESS)
    127127        if((fdwAccess & FILE_MAP_COPY) && !(mProtFlags & PAGE_WRITECOPY))
     
    222222BOOL Win32MemMapDup::commitPage(ULONG ulFaultAddr, ULONG offset, BOOL fWriteAccess, int nrpages)
    223223{
    224     if(mProtFlags & PAGE_WRITECOPY) 
     224    if(mProtFlags & PAGE_WRITECOPY)
    225225    {//this is a COW map, call commitGuardPage
    226226        return commitGuardPage(ulFaultAddr, offset, fWriteAccess);
     
    245245//
    246246//******************************************************************************
    247 BOOL Win32MemMapDup::commitGuardPage(ULONG ulFaultAddr, ULONG ulOffset, 
     247BOOL Win32MemMapDup::commitGuardPage(ULONG ulFaultAddr, ULONG ulOffset,
    248248                                     BOOL fWriteAccess)
    249249{
  • TabularUnified branches/gcc-kmk/src/kernel32/mmapnotify.cpp

    r21716 r21720  
    66 * Calls notification handler when an exception occurs in the memory range of
    77 * the map.
    8  * 
     8 *
    99 * Copyright 2003 Sander van Leeuwen (sandervl@innotek.de)
    1010 *
     
    1616#include <stdlib.h>
    1717#include <string.h>
    18 #include <win\virtual.h>
     18#include <win/virtual.h>
    1919#include <odincrt.h>
    2020#include <handlemanager.h>
     
    2323#include "oslibmem.h"
    2424#include "winimagepeldr.h"
    25 #include <custombuild.h> 
     25#include <custombuild.h>
    2626#include <memmap.h>
    2727
     
    128128// Win32MemMapNotify::findMapByView
    129129//
    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
    131131// and has the specified access type
    132132//
  • TabularUnified branches/gcc-kmk/src/kernel32/mmapview.cpp

    r21716 r21720  
    2828#include <stdlib.h>
    2929#include <string.h>
    30 #include <win\virtual.h>
     30#include <win/virtual.h>
    3131#include <odincrt.h>
    3232#include <handlemanager.h>
     
    3535#include "oslibmem.h"
    3636#include "winimagepeldr.h"
    37 #include <custombuild.h> 
     37#include <custombuild.h>
    3838
    3939#define DBG_LOCALLOG    DBG_mmapview
     
    5151//
    5252//******************************************************************************
    53 Win32MemMapView::Win32MemMapView(Win32MemMap *map, ULONG offset, ULONG size, 
     53Win32MemMapView::Win32MemMapView(Win32MemMap *map, ULONG offset, ULONG size,
    5454                                 ULONG fdwAccess, Win32MemMap *owner)
    5555{
     
    8787    {
    8888        //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)
    9090        {
    9191            dprintf(("new OSLibDosGetNamedSharedMem FAILED"));
     
    104104    }
    105105    else {
    106         if(mfAccess & MEMMAP_ACCESS_COPYONWRITE) 
     106        if(mfAccess & MEMMAP_ACCESS_COPYONWRITE)
    107107        {
    108108            //A copy on write view is a private copy of the memory map
     
    118118        }
    119119        }
    120         else 
     120        else
    121121        if(OSLibDosAliasMem(viewaddr, size, &pMapView, accessAttr) != OSLIB_NOERROR) {
    122122            dprintf(("new OSLibDosAliasMem FAILED"));
     
    126126        }
    127127    }
    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
    129129    //shared and which are private (copy on write -> private page)
    130     if(fdwAccess == FILE_MAP_COPY) 
     130    if(fdwAccess == FILE_MAP_COPY)
    131131    {
    132132        DWORD nrPages = mSize >> PAGE_SHIFT;
     
    242242    viewpagestart = mOffset >> PAGE_SHIFT;
    243243    nrviewpages = mSize >> PAGE_SHIFT;
    244     if(mSize & 0xFFF) 
     244    if(mSize & 0xFFF)
    245245        nrviewpages++;
    246246
     
    248248        return; //outside this view
    249249    }
    250     if(startpage + nrpages > viewpagestart + nrviewpages) { 
     250    if(startpage + nrpages > viewpagestart + nrviewpages) {
    251251        nrpages -= ((startpage + nrpages) - (viewpagestart + nrviewpages));
    252252    }
     
    286286    }
    287287
    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) ) )
    290290    {
    291291        //PAGEVIEW_GUARD only applies to COW views
    292292        //PAGEVIEW_VIEW/READONLY does not apply to COW views
    293         return TRUE; 
     293        return TRUE;
    294294    }
    295295    if(mOffset + mSize <= offset || mOffset >= offset + size) {
     
    320320    }
    321321
    322     if(flags == PAGEVIEW_GUARD || (mfAccess & MEMMAP_ACCESS_COPYONWRITE)) 
     322    if(flags == PAGEVIEW_GUARD || (mfAccess & MEMMAP_ACCESS_COPYONWRITE))
    323323    {
    324324        DWORD startpage = (offset - mOffset) >> PAGE_SHIFT;
     
    330330        //of the COW pages, then only the shared pages must be changed.
    331331        //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++)
    333333    {
    334             if(!isCOWPage(i)) 
     334            if(!isCOWPage(i))
    335335            {//page is still shared, so set the guard flag
    336336                rc = OSLibDosSetMem((char *)pMapView+(offset - mOffset), PAGE_SIZE, accessAttr);
     
    354354//******************************************************************************
    355355//******************************************************************************
    356 int Win32MemMapView::findViews(Win32MemMap *map, int nrViews, 
     356int Win32MemMapView::findViews(Win32MemMap *map, int nrViews,
    357357                               Win32MemMapView *viewarray[])
    358358{
     
    362362  Win32MemMapView *view = mapviews, *nextview;
    363363
    364   if(view != NULL) 
     364  if(view != NULL)
    365365  {
    366       while(view && i < nrViews) 
     366      while(view && i < nrViews)
    367367      {
    368368          if(view->getParentMap() == map)
     
    384384  Win32MemMapView *view = mapviews, *nextview;
    385385
    386   if(view != NULL) 
     386  if(view != NULL)
    387387  {
    388       while(view) 
     388      while(view)
    389389      {
    390390          nextview = view->next;
     
    404404// Win32MemMap::findMapByView
    405405//
    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
    407407// and has the specified access type
    408408//
  • TabularUnified branches/gcc-kmk/src/kernel32/osliblvm.cpp

    r21583 r21720  
    2121#include <win32type.h>
    2222#include <winconst.h>
    23 #include <win\winioctl.h>
     23#include <win/winioctl.h>
    2424#include "osliblvm.h"
    2525
     
    8989    rc = DosQueryProcAddr(hModLVM, 0, "Write_Sectors", (PFN *)&pfnWrite_Sectors);
    9090    if(rc) goto fail;
    91    
     91
    9292    return TRUE;
    9393
     
    267267    Volume_Control_Array *volctrl;
    268268    CARDINAL32            lasterror;
    269    
     269
    270270    if(!hModLVM) {
    271271        dprintf(("LVM dll not loaded -> fail"));
     
    310310//******************************************************************************
    311311//******************************************************************************
    312 BOOL OSLibLVMQueryVolumeName(HANDLE hVolumeControlData, ULONG *pVolIndex, 
     312BOOL OSLibLVMQueryVolumeName(HANDLE hVolumeControlData, ULONG *pVolIndex,
    313313                             LPSTR lpszVolumeName, DWORD cchBufferLength)
    314314{
     
    346346static Volume_Information_Record OSLibLVMFindVolumeByDriveLetter(ULONG driveLetter,
    347347                                                                 Volume_Control_Record *pVolRec,
    348                                                                  CARDINAL32 *lasterror) 
     348                                                                 CARDINAL32 *lasterror)
    349349{
    350350    Volume_Control_Array      *volctrl;
     
    384384static Volume_Information_Record OSLibLVMFindVolumeByName(LPSTR pszVolName,
    385385                                                          Volume_Control_Record *pVolRec,
    386                                                           CARDINAL32 *lasterror) 
     386                                                          CARDINAL32 *lasterror)
    387387{
    388388    Volume_Control_Array      *volctrl;
     
    564564//            - -1 if volume wasn't found
    565565//            - 0 if volume is present, but not mounted
    566 //   
     566//
    567567//******************************************************************************
    568568CHAR OSLibLVMQueryDriveFromVolumeName(LPCSTR lpszVolume)
     
    596596//******************************************************************************
    597597//******************************************************************************
    598 DWORD OSLibLVMQueryVolumeSerialAndName(LPSTR lpszVolume, LPDWORD lpVolumeSerialNumber, 
     598DWORD OSLibLVMQueryVolumeSerialAndName(LPSTR lpszVolume, LPDWORD lpVolumeSerialNumber,
    599599                                       LPSTR lpVolumeNameBuffer, DWORD nVolumeNameSize)
    600600{
     
    621621//******************************************************************************
    622622//******************************************************************************
    623 BOOL OSLibLVMGetVolumeNameForVolumeMountPoint(LPCSTR lpszVolumeMountPoint, 
    624                                               LPSTR lpszVolumeName, 
     623BOOL OSLibLVMGetVolumeNameForVolumeMountPoint(LPCSTR lpszVolumeMountPoint,
     624                                              LPSTR lpszVolumeName,
    625625                                              DWORD cchBufferLength)
    626626{
     
    665665    strncpy(lpszOS2VolumeName, &lpszWin32VolumeName[sizeof(VOLUME_NAME_PREFIX)-1+1], cchBufferLength-1);  //-zero term + starting '{'
    666666    length -= sizeof(VOLUME_NAME_PREFIX)-1+1;
    667     if(lpszOS2VolumeName[length-2] == '}') 
     667    if(lpszOS2VolumeName[length-2] == '}')
    668668    {
    669669        lpszOS2VolumeName[length-2] = 0;
     
    671671    }
    672672    else
    673     if(lpszOS2VolumeName[length-1] == '}') 
     673    if(lpszOS2VolumeName[length-1] == '}')
    674674    {
    675675        lpszOS2VolumeName[length-1] = 0;
  • TabularUnified branches/gcc-kmk/src/kernel32/osliblvm.h

    r9693 r21720  
    1515#endif
    1616
    17 #include <win\winioctl.h>
     17#include <win/winioctl.h>
    1818
    1919#ifdef OS2_INCLUDED
     
    3030typedef unsigned long      LBA;
    3131
    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
    3434   is PSN 0. */
    3535typedef unsigned long      PSN;
     
    330330HANDLE OSLibLVMQueryVolumeControlData();
    331331void   OSLibLVMFreeVolumeControlData(HANDLE hVolumeControlData);
    332 BOOL   OSLibLVMQueryVolumeName(HANDLE hVolumeControlData, ULONG *pVolIndex, 
     332BOOL   OSLibLVMQueryVolumeName(HANDLE hVolumeControlData, ULONG *pVolIndex,
    333333                               LPSTR lpszVolumeName, DWORD cchBufferLength);
    334334
     
    338338ULONG  OSLibLVMGetDriveType(LPCSTR lpszVolume);
    339339CHAR   OSLibLVMQueryDriveFromVolumeName(LPCSTR lpszVolume);
    340 BOOL   OSLibLVMGetVolumeNameForVolumeMountPoint(LPCSTR lpszVolumeMountPoint, LPSTR lpszVolumeName, 
     340BOOL   OSLibLVMGetVolumeNameForVolumeMountPoint(LPCSTR lpszVolumeMountPoint, LPSTR lpszVolumeName,
    341341                                                DWORD cchBufferLength);
    342342
  • TabularUnified branches/gcc-kmk/src/kernel32/oslibmem.cpp

    r21711 r21720  
    3131#include <win32api.h>
    3232#include <winconst.h>
    33 #include <win\winioctl.h>
     33#include <win/winioctl.h>
    3434#include <dbglog.h>
    3535#include <vmutex.h>
  • TabularUnified branches/gcc-kmk/src/kernel32/process.cpp

    r21716 r21720  
    2727#include <misc.h>
    2828#include <wprocess.h>
    29 #include <win\task.h>
     29#include <win/task.h>
    3030#include "winimagebase.h"
    3131#include "oslibdos.h"
     
    151151 * GetProcessHeaps [KERNEL32.376]
    152152 */
    153 DWORD WINAPI GetProcessHeaps(DWORD nrofheaps,HANDLE *heaps) 
     153DWORD WINAPI GetProcessHeaps(DWORD nrofheaps,HANDLE *heaps)
    154154{
    155155    dprintf(("GetProcessHeaps: (%ld,%p), incomplete implementation.\n",nrofheaps,heaps));
     
    310310    if ( !process ) return 0;
    311311
    312     switch ( offset ) 
     312    switch ( offset )
    313313    {
    314314    case GPD_APP_COMPAT_FLAGS:
     
    379379
    380380/***********************************************************************
    381  *           ODIN_SetProcessDword   
     381 *           ODIN_SetProcessDword
    382382 *
    383383 * SvL: Special version that allows the caller to change some values
     
    391391    if ( !process ) return;
    392392
    393     switch ( offset ) 
     393    switch ( offset )
    394394    {
    395395    case GPD_STARTF_SHOWWINDOW:
     
    424424    if ( !process ) return;
    425425
    426     switch ( offset ) 
     426    switch ( offset )
    427427    {
    428428    case GPD_APP_COMPAT_FLAGS:
     
    444444
    445445    case GPD_USERDATA:
    446         process->process_dword = value; 
     446        process->process_dword = value;
    447447        break;
    448448
     
    488488  if(!NtdllRtlExtendedIntegerMultiply) {
    489489        HINSTANCE hInstance = LoadLibraryA("NTDLL.DLL");
    490         if(hInstance) 
     490        if(hInstance)
    491491                *(VOID **)&NtdllRtlExtendedIntegerMultiply=(void*)GetProcAddress(hInstance, (LPCSTR)"RtlExtendedIntegerMultiply");
    492492  }
  • TabularUnified branches/gcc-kmk/src/kernel32/virtual.cpp

    r21675 r21720  
    2323#include <stdlib.h>
    2424#include <string.h>
    25 #include <win\virtual.h>
    26 #include <win\thread.h>
     25#include <win/virtual.h>
     26#include <win/thread.h>
    2727#include <heapstring.h>
    2828#include <handlemanager.h>
  • TabularUnified branches/gcc-kmk/src/kernel32/winimagebase.cpp

    r21716 r21720  
    3838#include "initterm.h"
    3939#include "directory.h"
    40 #include <win\virtual.h>
     40#include <win/virtual.h>
    4141#include <winconst.h>
    4242
  • TabularUnified branches/gcc-kmk/src/kernel32/winimagebase.h

    r10397 r21720  
    2020#include <winconst.h>
    2121#else
    22 #include <win\winnls.h>
     22#include <win/winnls.h>
    2323#endif
    2424
  • TabularUnified branches/gcc-kmk/src/kernel32/winimagelx.cpp

    r21716 r21720  
    4242#include "oslibmisc.h"
    4343#include "initterm.h"
    44 #include <win\virtual.h>
     44#include <win/virtual.h>
    4545
    4646#define DBG_LOCALLOG    DBG_winimagelx
  • TabularUnified branches/gcc-kmk/src/kernel32/winimagepeldr.cpp

    r21355 r21720  
    5656#include "oslibmisc.h"
    5757#include "initterm.h"
    58 #include <win\virtual.h>
     58#include <win/virtual.h>
    5959#include "oslibdos.h"
    6060#include "oslibmem.h"
  • TabularUnified branches/gcc-kmk/src/kernel32/wprocess.cpp

    r21673 r21720  
    5252#include "shellapi.h"
    5353
    54 #include <win\ntddk.h>
    55 #include <win\psapi.h>
     54#include <win/ntddk.h>
     55#include <win/psapi.h>
    5656
    5757#include <custombuild.h>
  • TabularUnified branches/gcc-kmk/src/msvcrt/time.c

    r21395 r21720  
    2525#include <unistd.h>
    2626#include <time.h>
    27 #include <sys\times.h>
     27#include <sys/times.h>
    2828#else
    2929#include "config.h"
  • TabularUnified branches/gcc-kmk/src/oleaut32/libgif/dgif_lib.c

    r10266 r21720  
    1616#include <alloc.h>
    1717#include <stdlib.h>
    18 #include <sys\stat.h>
     18#include <sys/stat.h>
    1919#else
    2020#include <sys/types.h>
     
    332332
    333333        GifFile->Image.ColorMap = MakeMapObject(1 << BitsPerPixel, NULL);
    334    
     334
    335335        /* Get the image local color map: */
    336336        for (i = 0; i < GifFile->Image.ColorMap->ColorCount; i++) {
     
    918918* the GifFileType pointer.  Call DGifOpenFileName() or DGifOpenFileHandle()   *
    919919* first to initialize I/O.  Its inverse is EGifSpew().                        *
    920 * 
     920*
    921921 ******************************************************************************/
    922922int DGifSlurp(GifFileType *GifFile)
     
    930930    temp_save.ExtensionBlocks=NULL;
    931931    temp_save.ExtensionBlockCount=0;
    932  
     932
    933933    do {
    934934        if (DGifGetRecordType(GifFile, &RecordType) == GIF_ERROR)
     
    971971                    return(GIF_ERROR);
    972972                while (ExtData != NULL) {
    973            
     973
    974974            /* Create an extension block with our data */
    975975            if (AddExtensionBlock(&temp_save, ExtData[0], &ExtData[1])
    976976               == GIF_ERROR)
    977                 return (GIF_ERROR); 
    978            
     977                return (GIF_ERROR);
     978
    979979                    if (DGifGetExtensionNext(GifFile, &ExtData) == GIF_ERROR)
    980980                            return(GIF_ERROR);
     
    998998    if (temp_save.ExtensionBlocks)
    999999        FreeExtension(&temp_save);
    1000    
     1000
    10011001    return(GIF_OK);
    10021002}
  • TabularUnified branches/gcc-kmk/src/oleaut32/libgif/egif_lib.c

    r10266 r21720  
    1515#include <io.h>
    1616#include <alloc.h>
    17 #include <sys\stat.h>
     17#include <sys/stat.h>
    1818#else
    1919#include <sys/types.h>
     
    137137    Private->File = f;
    138138    Private->FileState = FILE_STATE_WRITE;
    139    
     139
    140140    Private->Write = (OutputFunc)0; /* No user write routine (MRB) */
    141141    GifFile->UserData = (VoidPtr)0; /* No user write handle (MRB) */
    142    
     142
    143143    _GifError = 0;
    144144
     
    173173    Private->File = (FILE *)0;
    174174    Private->FileState = FILE_STATE_WRITE;
    175    
     175
    176176    Private->Write = writeFunc; /* User write routine (MRB) */
    177177    GifFile->UserData = userData; /* User write handle (MRB) */
    178    
     178
    179179    _GifError = 0;
    180180
     
    825825        if (sp->RasterBits == NULL)
    826826            continue;
    827        
     827
    828828    if (sp->ExtensionBlocks)
    829829        {
  • TabularUnified branches/gcc-kmk/src/oleaut32/libgif/gif_hash.c

    r10266 r21720  
    2020#include <io.h>
    2121#include <alloc.h>
    22 #include <sys\stat.h>
     22#include <sys/stat.h>
    2323#else
    2424#include <sys/types.h>
  • TabularUnified branches/gcc-kmk/src/opengl/glide/sst1/init/init.c

    r6653 r21720  
    4545#endif
    4646
    47 #include "init96\init96.h"
     47#include "init96/init96.h"
    4848#include <sst1init.h>
    4949
  • TabularUnified branches/gcc-kmk/src/opengl/glide/sst1/init/vg96drvr.c

    r6653 r21720  
    2828#include <sst1vid.h>
    2929#include "init.h"
    30 #include "init96\init96.h"
     30#include "init96/init96.h"
    3131#include "fxinit.h"
    3232
  • TabularUnified branches/gcc-kmk/src/opengl/glut/glut_init.c

    r3579 r21720  
    1717#if defined(__WIN32OS2__)
    1818#include <windows.h>
    19 #include "GL\gl.h"
     19#include "GL/gl.h"
    2020#undef WH_NB_HOOKS /* Get rid of copiler warning... */
    2121#endif
  • TabularUnified branches/gcc-kmk/src/opengl/glut/glutos2.h

    r3579 r21720  
    1515 */
    1616#define gettimeofday gettimeofday_os2
    17 #include <sys\time.h>
     17#include <sys/time.h>
    1818#undef gettimeofday
    1919
  • TabularUnified branches/gcc-kmk/src/opengl/mesa/mesadive.c

    r4859 r21720  
    1313
    1414#include <os2wrap.h>
    15 #include "..\..\ddraw\divewrap.h"
     15#include "../../ddraw/divewrap.h"
    1616#include <memory.h>
    1717#include <malloc.h>
  • TabularUnified branches/gcc-kmk/src/opengl/mesa/osmesa.c

    r3598 r21720  
    12011201
    12021202#ifdef WIN32
    1203 #include "..\linetemp.h"
     1203#include "../linetemp.h"
    12041204#else
    12051205#include "linetemp.h"
     
    12311231
    12321232#ifdef WIN32
    1233 #include "..\linetemp.h"
     1233#include "../linetemp.h"
    12341234#else
    12351235#include "linetemp.h"
     
    12681268
    12691269#ifdef WIN32
    1270 #include "..\linetemp.h"
     1270#include "../linetemp.h"
    12711271#else
    12721272#include "linetemp.h"
     
    13081308
    13091309#ifdef WIN32
    1310 #include "..\linetemp.h"
     1310#include "../linetemp.h"
    13111311#else
    13121312#include "linetemp.h"
     
    13491349
    13501350#ifdef WIN32
    1351 #include "..\linetemp.h"
     1351#include "../linetemp.h"
    13521352#else
    13531353#include "linetemp.h"
     
    14931493}
    14941494#ifdef WIN32
    1495 #include "..\tritemp.h"
     1495#include "../tritemp.h"
    14961496#else
    14971497#include "tritemp.h"
     
    15321532}
    15331533#ifdef WIN32
    1534 #include "..\tritemp.h"
     1534#include "../tritemp.h"
    15351535#else
    15361536#include "tritemp.h"
     
    17031703
    17041704#ifdef WIN32
    1705 #include "..\linetemp.h"
     1705#include "../linetemp.h"
    17061706#else
    17071707#include "linetemp.h"
     
    17411741}
    17421742#ifdef WIN32
    1743 #include "..\tritemp.h"
     1743#include "../tritemp.h"
    17441744#else
    17451745#include "tritemp.h"
  • TabularUnified branches/gcc-kmk/src/opengl/mesa/wmesa.c

    r3598 r21720  
    23442344
    23452345        #ifdef WIN32
    2346                 #include "..\tritemp.h"
     2346                #include "../tritemp.h"
    23472347        #else
    23482348                #include "tritemp.h"
     
    23862386
    23872387        #ifdef WIN32
    2388                 #include "..\tritemp.h"
     2388                #include "../tritemp.h"
    23892389        #else
    23902390                #include "tritemp.h"
     
    24292429
    24302430        #ifdef WIN32
    2431                 #include "..\tritemp.h"
     2431                #include "../tritemp.h"
    24322432        #else
    24332433                #include "tritemp.h"
     
    24692469
    24702470        #ifdef WIN32
    2471                 #include "..\tritemp.h"
     2471                #include "../tritemp.h"
    24722472        #else
    24732473                #include "tritemp.h"
     
    25102510
    25112511        #ifdef WIN32
    2512                 #include "..\tritemp.h"
     2512                #include "../tritemp.h"
    25132513        #else
    25142514                #include "tritemp.h"
     
    25512551
    25522552        #ifdef WIN32
    2553                 #include "..\tritemp.h"
     2553                #include "../tritemp.h"
    25542554        #else
    25552555                #include "tritemp.h"
     
    25862586
    25872587        #ifdef WIN32
    2588                 #include "..\tritemp.h"
     2588                #include "../tritemp.h"
    25892589        #else
    25902590                #include "tritemp.h"
     
    26212621
    26222622        #ifdef WIN32
    2623                 #include "..\tritemp.h"
     2623                #include "../tritemp.h"
    26242624        #else
    26252625                #include "tritemp.h"
     
    26562656
    26572657        #ifdef WIN32
    2658                 #include "..\tritemp.h"
     2658                #include "../tritemp.h"
    26592659        #else
    26602660                #include "tritemp.h"
     
    26932693
    26942694        #ifdef WIN32
    2695                 #include "..\tritemp.h"
     2695                #include "../tritemp.h"
    26962696        #else
    26972697                #include "tritemp.h"
     
    27282728
    27292729        #ifdef WIN32
    2730                 #include "..\tritemp.h"
     2730                #include "../tritemp.h"
    27312731        #else
    27322732                #include "tritemp.h"
     
    27632763
    27642764        #ifdef WIN32
    2765                 #include "..\tritemp.h"
     2765                #include "../tritemp.h"
    27662766        #else
    27672767                #include "tritemp.h"
     
    28032803
    28042804        #ifdef WIN32
    2805                 #include "..\tritemp.h"
     2805                #include "../tritemp.h"
    28062806        #else
    28072807                #include "tritemp.h"
     
    28442844
    28452845        #ifdef WIN32
    2846                 #include "..\tritemp.h"
     2846                #include "../tritemp.h"
    28472847        #else
    28482848                #include "tritemp.h"
     
    28812881
    28822882        #ifdef WIN32
    2883                 #include "..\tritemp.h"
     2883                #include "../tritemp.h"
    28842884        #else
    28852885                #include "tritemp.h"
     
    29172917
    29182918        #ifdef WIN32
    2919                 #include "..\tritemp.h"
     2919                #include "../tritemp.h"
    29202920        #else
    29212921                #include "tritemp.h"
     
    29592959
    29602960        #ifdef WIN32
    2961                 #include "..\tritemp.h"
     2961                #include "../tritemp.h"
    29622962        #else
    29632963                #include "tritemp.h"
     
    29992999
    30003000        #ifdef WIN32
    3001                 #include "..\tritemp.h"
     3001                #include "../tritemp.h"
    30023002        #else
    30033003                #include "tritemp.h"
     
    30333033
    30343034        #ifdef WIN32
    3035                 #include "..\tritemp.h"
     3035                #include "../tritemp.h"
    30363036        #else
    30373037                #include "tritemp.h"
     
    30683068
    30693069        #ifdef WIN32
    3070                 #include "..\tritemp.h"
     3070                #include "../tritemp.h"
    30713071        #else
    30723072                #include "tritemp.h"
  • TabularUnified branches/gcc-kmk/src/peldr/pe.cpp

    r21580 r21720  
    77 *
    88 * Command line options:
    9  *   /OPT:[x1=y,x2=z,..]         
     9 *   /OPT:[x1=y,x2=z,..]
    1010 *   x = CURDIR    -> set current directory to y
    1111 *   (not other options available at this time)
     
    3131#include <misc.h>
    3232#include <wprocess.h>
    33 #include <win\peexe.h>
     33#include <win/peexe.h>
    3434#include <odinpe.h>
    3535#include "pe.h"
     
    100100 int    nrTries = 1;
    101101
    102   if(DosGetInfoBlocks(&ptib, &ppib) == 0) 
     102  if(DosGetInfoBlocks(&ptib, &ppib) == 0)
    103103  {
    104104      char *pszTemp;
     
    137137                        else    _interrupt(3);  //should not happen!
    138138#endif
    139                 }               
     139                }
    140140                while(*cmdline == ' ')  cmdline++; //skip leading space
    141141                if(*cmdline == '"') {
     
    196196                strcat(exeShortName, ext);
    197197
    198                 if ( strlen(fullpath) == 0 ) 
     198                if ( strlen(fullpath) == 0 )
    199199                {
    200200                    char newExeName[CCHMAXPATH];
     
    205205                                     , newExeName              /* Result of the search     */
    206206                                     , sizeof(newExeName)      /* Length of search buffer  */
    207                                      ) == NO_ERROR) 
     207                                     ) == NO_ERROR)
    208208                        {
    209209                            strcpy(exeName, newExeName);
     
    212212
    213213                FILESTATUS3 fstat3;
    214                 if(DosQueryPathInfo(exeName, FIL_STANDARD, (PVOID)&fstat3, sizeof(fstat3))) 
     214                if(DosQueryPathInfo(exeName, FIL_STANDARD, (PVOID)&fstat3, sizeof(fstat3)))
    215215                {
    216216                        nrTries++;
     
    257257        //switch process type to PM so the command line app can create PM
    258258        //windows
    259         ppib->pib_ultype = 3; 
     259        ppib->pib_ultype = 3;
    260260  }
    261261#endif
     
    272272
    273273  hmq = MyWinCreateMsgQueue(hab, 0);
    274  
     274
    275275  if(argc < 2) {
    276276        MyWinMessageBox(HWND_DESKTOP, NULL, INFO_BANNER, szErrorTitle, 0, MB_OK | MB_ERROR | MB_MOVEABLE);
     
    292292  fVioConsole = FALSE;
    293293#endif
    294   rc = CreateWin32Exe(exeName, win32cmdline, peoptions, reservedMemory, 0, 
     294  rc = CreateWin32Exe(exeName, win32cmdline, peoptions, reservedMemory, 0,
    295295                      fConsoleApp, fVioConsole, errorMod, sizeof(errorMod));
    296296  if(rc != LDRERROR_SUCCESS)
     
    305305            sprintf(pszErrorMsg, szCPUErrorMsg, exeName);
    306306            break;
    307         case LDRERROR_FILE_SYSTEM:           
     307        case LDRERROR_FILE_SYSTEM:
    308308            sprintf(szErrorMsg, szExeErrorMsg, exeName);
    309309            break;
  • TabularUnified branches/gcc-kmk/src/rpcrt4/uuid.cpp

    r3325 r21720  
    4040
    4141#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>
    4646#include <netdb.h>
    47 #include <netinet\in.h>
    48 #include <netinet\tcp.h>
     47#include <netinet/in.h>
     48#include <netinet/tcp.h>
    4949#undef interface
    50 #include <net\if.h>
    51 #include <netinet\if_ether.h>
     50#include <net/if.h>
     51#include <netinet/if_ether.h>
    5252#include <nerrno.h>
    53 #include <sys\time.h>
     53#include <sys/time.h>
    5454
    5555ULONG WINAPI RtlExtendedIntegerMultiply(LARGE_INTEGER factor1, INT factor2);
  • TabularUnified branches/gcc-kmk/src/shdocvw/shdocvw.h

    r4943 r21720  
    3131
    3232#ifdef __WIN32OS2__
    33 #include <win\winerror.h>
     33#include <win/winerror.h>
    3434#endif
    3535
  • TabularUnified branches/gcc-kmk/src/shell32/sh.cpp

    r21494 r21720  
    2727#define CINTERFACE
    2828#include "shell32_main.h"
    29 #include <win\shlobj.h>
     29#include <win/shlobj.h>
    3030#include <misc.h>
    3131//#include <nameid.h>
  • TabularUnified branches/gcc-kmk/src/shell32/shell32_main.h

    r10162 r21720  
    3535* pointer to functions dynamically loaded
    3636*/
    37 extern LPVOID   (* WINAPI pCOMCTL32_Alloc) (INT); 
    38 extern BOOL     (* WINAPI pCOMCTL32_Free) (LPVOID); 
     37extern LPVOID   (* WINAPI pCOMCTL32_Alloc) (INT);
     38extern BOOL     (* WINAPI pCOMCTL32_Free) (LPVOID);
    3939
    4040#define pDPA_Create     DPA_Create
     
    4646#define pDPA_DeletePtr  DPA_DeletePtr
    4747
    48 #define pDPA_GetPtrCount(hdpa)  (*(INT*)(hdpa))   
     48#define pDPA_GetPtrCount(hdpa)  (*(INT*)(hdpa))
    4949
    5050#define pLookupIconIdFromDirectoryEx LookupIconIdFromDirectoryEx
    5151#define pCreateIconFromResourceEx    CreateIconFromResourceEx
    5252
    53 #include <wine\undoccomctl32.h>
     53#include <wine/undoccomctl32.h>
    5454
    5555#define pAddMRUData     AddMRUData
     
    106106
    107107LPEXTRACTICONA  IExtractIconA_Constructor(LPITEMIDLIST);
    108 HRESULT         CreateStreamOnFile (LPCSTR pszFilename, IStream ** ppstm);     
     108HRESULT         CreateStreamOnFile (LPCSTR pszFilename, IStream ** ppstm);
    109109
    110110/* fixme: rename the functions when the shell32.dll has it's own exports namespace */
     
    148148extern HRESULT (* WINAPI pRegisterDragDrop)(HWND hwnd, IDropTarget* pDropTarget);
    149149extern HRESULT (* WINAPI pRevokeDragDrop)(HWND hwnd);
    150 extern HRESULT (* WINAPI pDoDragDrop)(LPDATAOBJECT,LPDROPSOURCE,DWORD,DWORD*); 
     150extern HRESULT (* WINAPI pDoDragDrop)(LPDATAOBJECT,LPDROPSOURCE,DWORD,DWORD*);
    151151extern void     (* WINAPI pReleaseStgMedium)(STGMEDIUM* pmedium);
    152152extern HRESULT (* WINAPI pOleSetClipboard)(IDataObject* pDataObj);
     
    157157HRESULT (* WINAPI pRegisterDragDrop)(HWND hwnd, IDropTarget* pDropTarget);
    158158HRESULT (* WINAPI pRevokeDragDrop)(HWND hwnd);
    159 HRESULT (* WINAPI pDoDragDrop)(LPDATAOBJECT,LPDROPSOURCE,DWORD,DWORD*); 
     159HRESULT (* WINAPI pDoDragDrop)(LPDATAOBJECT,LPDROPSOURCE,DWORD,DWORD*);
    160160void    (* WINAPI pReleaseStgMedium)(STGMEDIUM* pmedium);
    161161HRESULT (* WINAPI pOleSetClipboard)(IDataObject* pDataObj);
  • TabularUnified branches/gcc-kmk/src/shlwapi/ordinal_odin.cpp

    r21494 r21720  
    3838#include <heapstring.h>
    3939#include <misc.h>
    40 #include <win\shell.h>
    41 #include <win\winerror.h>
     40#include <win/shell.h>
     41#include <win/winerror.h>
    4242#include <winversion.h>
    4343#include <winuser.h>
  • TabularUnified branches/gcc-kmk/src/shlwapi/reg_odin.cpp

    r7820 r21720  
    3333#include <heapstring.h>
    3434#include <misc.h>
    35 #include <win\winerror.h>
     35#include <win/winerror.h>
    3636#include "shlwapi_odin.h"
    3737#define NO_SHLWAPI_STREAM
     
    140140{
    141141  dprintf(("not yet implemented"));
    142  
     142
    143143  LONG rc = 0;
    144144  return rc;
     
    169169{
    170170  dprintf(("not yet implemented"));
    171  
     171
    172172  LONG rc = 0;
    173173  return rc;
     
    182182 * Variables :
    183183 * Result    :
    184  * Remark    : 
     184 * Remark    :
    185185 * Status    : STUB UNTESTED
    186186 *
     
    194194{
    195195  dprintf(("not implemented\n"));
    196  
     196
    197197  LONG rc = RegDeleteValueA(hUSKey,
    198198                            (LPSTR)lpValue);
     
    207207 * Variables :
    208208 * Result    :
    209  * Remark    : 
     209 * Remark    :
    210210 * Status    : STUB UNTESTED
    211211 *
     
    219219{
    220220  dprintf(("not implemented\n"));
    221  
     221
    222222  LONG rc = RegDeleteValueW(hKey,
    223223                            (LPWSTR)lpValue);
     
    233233 * Variables :
    234234 * Result    :
    235  * Remark    : 
     235 * Remark    :
    236236 * Status    : STUB UNTESTED
    237237 *
     
    255255 * Variables :
    256256 * Result    :
    257  * Remark    : 
     257 * Remark    :
    258258 * Status    : STUB UNTESTED
    259259 *
     
    277277 * Variables :
    278278 * Result    :
    279  * Remark    : 
     279 * Remark    :
    280280 * Status    : STUB UNTESTED
    281281 *
     
    299299 * Variables :
    300300 * Result    :
    301  * Remark    : 
     301 * Remark    :
    302302 * Status    : STUB UNTESTED
    303303 *
     
    323323 * Variables :
    324324 * Result    :
    325  * Remark    : 
     325 * Remark    :
    326326 * Status    : STUB UNTESTED
    327327 *
     
    350350 * Variables :
    351351 * Result    :
    352  * Remark    : 
     352 * Remark    :
    353353 * Status    : STUB UNTESTED
    354354 *
  • TabularUnified branches/gcc-kmk/src/shlwapi/shlstub.cpp

    r21494 r21720  
    2929#include <heapstring.h>
    3030#include <misc.h>
    31 #include <win\shell.h>
    32 #include <win\winerror.h>
     31#include <win/shell.h>
     32#include <win/winerror.h>
    3333
    3434
     
    3838/*****************************************************************************
    3939 * Name      : StrFromTimeIntervalA
    40  * Purpose   : 
     40 * Purpose   :
    4141 * Parameters:
    4242 * Variables :
    4343 * Result    :
    44  * Remark    : 
     44 * Remark    :
    4545 * Status    : UNTESTED
    4646 *
     
    5151{
    5252  dprintf(("not yet implemented"));
    53  
     53
    5454  return NULL;
    5555}
     
    5858/*****************************************************************************
    5959 * Name      : StrFromTimeIntervalW
    60  * Purpose   : 
     60 * Purpose   :
    6161 * Parameters:
    6262 * Variables :
    6363 * Result    :
    64  * Remark    : 
     64 * Remark    :
    6565 * Status    : UNTESTED
    6666 *
     
    7171{
    7272  dprintf(("not yet implemented"));
    73  
     73
    7474  return NULL;
    7575}
  • TabularUnified branches/gcc-kmk/src/shlwapi/shlwapi.cpp

    r21494 r21720  
    4141#include <misc.h>
    4242#include <unicode.h>
    43 #include <win\shell.h>
    44 #include <win\winerror.h>
     43#include <win/shell.h>
     44#include <win/winerror.h>
    4545
    4646// import OLE support
  • TabularUnified branches/gcc-kmk/src/shlwapi/string_odin.cpp

    r21494 r21720  
    4242#include <heapstring.h>
    4343#include <misc.h>
    44 #include <win\shell.h>
    45 #include <win\winerror.h>
     44#include <win/shell.h>
     45#include <win/winerror.h>
    4646#include <winversion.h>
    4747#include <winuser.h>
     
    179179       (lpString2 == NULL) )
    180180    return 0;
    181  
     181
    182182  LPSTR lpLoop = (LPSTR)lpString1;
    183  
     183
    184184  for (; (*lpLoop != 0); lpLoop++ )
    185185    if ( StrChrA( lpString2, *lpLoop ) )
    186186      return (INT) (lpLoop - lpString1);
    187  
     187
    188188  return (INT) (lpLoop - lpString1);
    189189}
     
    213213       (lpString2 == NULL) )
    214214    return 0;
    215  
     215
    216216  LPWSTR lpLoop = (LPWSTR)lpString1;
    217  
     217
    218218  for (; (*lpLoop != 0); lpLoop++ )
    219219    if ( StrChrW( lpString2, *lpLoop ) )
    220220      return (INT) (lpLoop - lpString1);
    221  
     221
    222222  return (INT) (lpLoop - lpString1);
    223223}
     
    230230 * Variables :
    231231 * Result    :
    232  * Remark    : 
     232 * Remark    :
    233233 * Status    : UNTESTED
    234234 *
     
    241241{
    242242  register LPSTR s1;
    243  
     243
    244244  while (*lpString1)
    245245  {
     
    255255    lpString1++;
    256256  }
    257  
     257
    258258  return (LPSTR)NULL;
    259259}
     
    266266 * Variables :
    267267 * Result    :
    268  * Remark    : 
     268 * Remark    :
    269269 * Status    : UNTESTED
    270270 *
     
    277277{
    278278  register LPWSTR s1;
    279  
     279
    280280  while (*lpString1)
    281281  {
     
    291291    lpString1++;
    292292  }
    293  
     293
    294294  return (LPWSTR)NULL;
    295295}
     
    304304
    305305  dprintf(("StrRStrIA %x %x %x NOT IMPLEMENTED correctly", lpFirst, lpSrch, unknown));
    306  
     306
    307307  // lpSrch cannot fit into lpFirst
    308308  if (iLen < 0)
    309309    return (LPSTR)NULL;
    310  
     310
    311311  LPSTR lpThis = (LPSTR)lpFirst + iLen;
    312  
     312
    313313  while (lpThis >= lpFirst)
    314314  {
     
    318318    lpThis--;
    319319  }
    320  
     320
    321321  return NULL;
    322322}
     
    331331
    332332  dprintf(("StrRStrIA %x %x %x NOT IMPLEMENTED correctly", lpFirst, lpSrch, unknown));
    333  
     333
    334334  // lpSrch cannot fit into lpFirst
    335335  if (iLen < 0)
    336336    return (LPWSTR)NULL;
    337  
     337
    338338  LPWSTR lpThis = (LPWSTR)lpFirst + iLen;
    339  
     339
    340340  while (lpThis >= lpFirst)
    341341  {
     
    345345    lpThis--;
    346346  }
    347  
     347
    348348  return NULL;
    349349}
  • TabularUnified branches/gcc-kmk/src/shlwapi/url_odin.cpp

    r7820 r21720  
    3535#include <heapstring.h>
    3636#include <misc.h>
    37 #include <win\shell.h>
    38 #include <win\winerror.h>
     37#include <win/shell.h>
     38#include <win/winerror.h>
    3939
    4040#include "shlwapi_odin.h"
  • TabularUnified branches/gcc-kmk/src/user32/controls/controls.h

    r8543 r21720  
    1010#define __CONTROLS_H
    1111
    12 #include <win\win.h>
     12#include <win/win.h>
    1313#include <heapstring.h>
    1414
  • TabularUnified branches/gcc-kmk/src/user32/loadres.cpp

    r21303 r21720  
    2222#include <heapstring.h>
    2323#include <oslibres.h>
    24 #include <win\virtual.h>
     24#include <win/virtual.h>
    2525#include "dib.h"
    2626#include "initterm.h"
     
    7070    hRes = FindResourceW(hinst, (LPWSTR)(((wID>>4)&0xffff)+1), RT_STRINGW);
    7171    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));
    7373        *lpBuffer = 0;  //NT4, SP6 clears first character
    7474        return 0;
     
    342342    headersize = sizeof(BITMAPINFO)+colortablesize+3*sizeof(DWORD); //+ extra space for > 8bpp images
    343343
    344     pInfo = (BITMAPINFO *)malloc(headersize+bmpsize); 
     344    pInfo = (BITMAPINFO *)malloc(headersize+bmpsize);
    345345    if(pInfo == NULL) {
    346346        DebugInt3();
     
    360360    GetDIBits(hdc, hBitmap, 0, bm.bmHeight, pBitmapData, pInfo, DIB_RGB_COLORS);
    361361
    362     res = CreateDIBitmap(hdc, &pInfo->bmiHeader, CBM_INIT, pBitmapData, 
     362    res = CreateDIBitmap(hdc, &pInfo->bmiHeader, CBM_INIT, pBitmapData,
    363363                         pInfo, DIB_RGB_COLORS );
    364364
  • TabularUnified branches/gcc-kmk/src/user32/msgbox.c

    r10190 r21720  
    88 *
    99 */
    10 #include <win\winbase.h>
    11 #include <win\winuser.h>
     10#include <win/winbase.h>
     11#include <win/winuser.h>
    1212#include <string.h>
    1313#include <dlgs.h>
  • TabularUnified branches/gcc-kmk/src/user32/oslibmsg.cpp

    r21555 r21720  
    4949#include "pmwindow.h"
    5050#include "oslibwin.h"
    51 #include <win\hook.h>
     51#include <win/hook.h>
    5252#include <winscan.h>
    5353#include <winkeyboard.h>
  • TabularUnified branches/gcc-kmk/src/user32/oslibres.h

    r6168 r21720  
    1717#endif
    1818
    19 #include <win\cursoricon.h>
     19#include <win/cursoricon.h>
    2020
    2121#ifdef OS2_INCLUDED
  • TabularUnified branches/gcc-kmk/src/user32/pmwindow.cpp

    r21717 r21720  
    5757#include <oslibdnd.h>
    5858#include <custombuild.h>
    59 #include <win\dbt.h>
     59#include <win/dbt.h>
    6060#include "dragdrop.h"
    6161#include "menu.h"
  • TabularUnified branches/gcc-kmk/src/user32/win32class.cpp

    r10587 r21720  
    3434#include <win32class.h>
    3535#include <win32wnd.h>
    36 #include <win\winproc.h>
     36#include <win/winproc.h>
    3737#include <unicode.h>
    3838
  • TabularUnified branches/gcc-kmk/src/user32/win32dlg.cpp

    r10545 r21720  
    1818#include <misc.h>
    1919#include <win32dlg.h>
    20 #include <win\winproc.h>
     20#include <win/winproc.h>
    2121#include "oslibmsg.h"
    2222#include "oslibwin.h"
     
    202202
    203203    //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)
    205205    //(verified this behaviour in NT4, SP6)
    206206    if (dlgInfo.style & DS_CONTROL)     cs.style &= ~(WS_CAPTION);
     
    265265
    266266        HWND hwndPreInitFocus = GetFocus();
    267         if(SendMessageA(getWindowHandle(), WM_INITDIALOG, (WPARAM)hwndFocus, param)) 
     267        if(SendMessageA(getWindowHandle(), WM_INITDIALOG, (WPARAM)hwndFocus, param))
    268268        {
    269269            //SvL: Experiments in NT4 show that dialogs that are children don't
    270270            //     receive focus. Not sure if this is always true. (couldn't
    271271            //     find any remarks about this in the SDK docs)
    272             if(!(getStyle() & WS_CHILD)) 
     272            if(!(getStyle() & WS_CHILD))
    273273            {
    274274                /* check where the focus is again,
     
    285285            //     receive focus. Not sure if this is always true. (couldn't
    286286            //     find any remarks about this in the SDK docs)
    287             if(!(getStyle() & WS_CHILD)) 
     287            if(!(getStyle() & WS_CHILD))
    288288            {
    289289                /* If the dlgproc has returned FALSE (indicating handling of keyboard focus)
     
    379379                       HOOK_CallHooksA( WH_MSGFILTER, MSGF_DIALOGBOX, 0,
    380380                                          (LPARAM) pmsg ));
    381                        
     381
    382382                HeapFree( GetProcessHeap(), 0, pmsg );
    383383                if (ret)
     
    11631163
    11641164    /* unblock dialog loop */
    1165     PostMessageA(hwnd, WM_NULL, 0, 0); 
     1165    PostMessageA(hwnd, WM_NULL, 0, 0);
    11661166    return TRUE;
    11671167}
  • TabularUnified branches/gcc-kmk/src/user32/win32wbase.cpp

    r21641 r21720  
    6363#include "controls.h"
    6464#include <wprocess.h>
    65 #include <win\hook.h>
     65#include <win/hook.h>
    6666#include <menu.h>
    6767#define INCL_TIMERWIN32
  • TabularUnified branches/gcc-kmk/src/user32/win32wbasepos.cpp

    r10091 r21720  
    3636#include "dc.h"
    3737#include "win32wdesktop.h"
    38 #include <win\hook.h>
     38#include <win/hook.h>
    3939
    4040#define DBG_LOCALLOG    DBG_win32wbasepos
  • TabularUnified branches/gcc-kmk/src/user32/win32wfake.cpp

    r10038 r21720  
    1414#include <string.h>
    1515#include <dbglog.h>
    16 #include <win\winproc.h>
     16#include <win/winproc.h>
    1717#include <win32wbase.h>
    1818#include <win32wfake.h>
  • TabularUnified branches/gcc-kmk/src/user32/winaccel.cpp

    r10190 r21720  
    1818#include <misc.h>
    1919#include <heapstring.h>
    20 #include <win\winnls.h>
     20#include <win/winnls.h>
    2121
    2222#define DBG_LOCALLOG    DBG_winaccel
     
    2929 * 01:  BYTE    pad             (to WORD boundary)
    3030 * 02:  WORD    event
    31  * 04:  WORD    IDval           
     31 * 04:  WORD    IDval
    3232 * 06:  WORD    pad             (to DWORD boundary)
    3333 */
     
    5454                hRetval = GlobalAlloc(0,sizeof(ACCEL)*nrofaccells);
    5555                accel   = (LPACCEL)GlobalLock(hRetval);
    56        
     56
    5757                for (i=0;i<nrofaccells;i++) {
    5858                        accel[i].fVirt = accel_table[i].fVirt;
  • TabularUnified branches/gcc-kmk/src/user32/windlg.cpp

    r21356 r21720  
    2424#include "win32dlg.h"
    2525#include <heapstring.h>
    26 #include <win\drive.h>
     26#include <win/drive.h>
    2727#include <custombuild.h>
    2828
     
    330330                }
    331331            }
    332         }       
     332        }
    333333    }
    334334#endif
  • TabularUnified branches/gcc-kmk/src/user32/windlgmsg.cpp

    r8968 r21720  
    2222#include "win32dlg.h"
    2323#include <winnls.h>
    24 #include <wine\unicode.h>
     24#include <wine/unicode.h>
    2525
    2626#define DBG_LOCALLOG    DBG_windlgmsg
     
    276276                if (HIWORD(dw) == DC_HASDEFID)
    277277                {
    278                   if (IsWindowEnabled(GetDlgItem(hwndDlg, LOWORD(dw)))) 
     278                  if (IsWindowEnabled(GetDlgItem(hwndDlg, LOWORD(dw))))
    279279                  {
    280280                       SendMessageA( hwndDlg, WM_COMMAND,
  • TabularUnified branches/gcc-kmk/src/user32/window.cpp

    r21347 r21720  
    3939#include "pmwindow.h"
    4040#include "oslibmsg.h"
    41 #include <win\winpos.h>
    42 #include <win\win.h>
     41#include <win/winpos.h>
     42#include <win/win.h>
    4343#include <heapstring.h>
    4444#include <winuser32.h>
     
    155155    }
    156156    HWND hwnd = window->getWindowHandle();
    157  
     157
    158158    // set myself as last active popup / window
    159159    window->setLastActive( hwnd );
    160  
     160
    161161    RELEASE_WNDOBJ(window);
    162162    return hwnd;
     
    262262    }
    263263    HWND hwnd = window->getWindowHandle();
    264  
     264
    265265    // set myself as last active popup / window
    266266    window->setLastActive( hwnd );
    267  
     267
    268268    RELEASE_WNDOBJ(window);
    269269    return hwnd;
     
    300300    }
    301301    hwndActive = window->SetActiveWindow();
    302  
     302
    303303    // check last active popup window
    304304    if (hwndActive)
     
    308308      dprintf(("support for last active popup incorrectly implemented"));
    309309    }
    310  
     310
    311311    RELEASE_WNDOBJ(window);
    312312    return hwndActive;
     
    561561    if ((nCmdShow == SW_RESTORE) && (window->getStyle() & WS_MINIMIZE) && fOS2Look )
    562562    {
    563         dprintf(("ShowWindow: Initiating OS/2 PM restore"));         
     563        dprintf(("ShowWindow: Initiating OS/2 PM restore"));
    564564        ret = OSLibWinRestoreWindow(window->getOS2FrameWindowHandle());
    565565    }
    566     else   
     566    else
    567567        ret = window->ShowWindow(nCmdShow);
    568568    RELEASE_WNDOBJ(window);
     
    720720    ret = TRUE;
    721721
    722     if(dwStyle & WS_CHILD) 
     722    if(dwStyle & WS_CHILD)
    723723    {
    724724        //check visibility of parents
     
    762762        //else no child -> no parent (GetParent returns owner otherwise!)
    763763    }
    764     else 
    765     if (type == GA_ROOT) 
     764    else
     765    if (type == GA_ROOT)
    766766    {
    767767         hwndAncestor = window->GetTopParent();
    768768    }
    769769    else
    770     if (type == GA_ROOTOWNER) 
    771     {
    772          if(hwnd != GetDesktopWindow()) 
     770    if (type == GA_ROOTOWNER)
     771    {
     772         if(hwnd != GetDesktopWindow())
    773773         {
    774774             hwndAncestor = hwnd;
     
    804804 TEB *teb;
    805805
    806     dprintf(("SetFocus %x", hwnd));   
     806    dprintf(("SetFocus %x", hwnd));
    807807    teb = GetThreadTEB();
    808808    if(teb == NULL) {
     
    929929    lpThreadInfo->hwndActive  = GetActiveWindow();
    930930    if(lpThreadInfo->hwndActive) {
    931         if(dwThreadId != GetWindowThreadProcessId(lpThreadInfo->hwndActive, NULL)) 
     931        if(dwThreadId != GetWindowThreadProcessId(lpThreadInfo->hwndActive, NULL))
    932932        {//this thread doesn't own the active window (TODO: correct??)
    933933            lpThreadInfo->hwndActive = 0;
     
    980980         windowDesktop->addRef();
    981981         window = windowDesktop;
    982     }     
     982    }
    983983    else window = Win32BaseWindow::GetWindowFromHandle(hwnd);
    984      
     984
    985985    if(!window) {
    986986        dprintf(("GetWindowRect, window %x not found", hwnd));
     
    11041104 *      InternalGetWindowText    (USER32.326)
    11051105 */
    1106 int WIN32API InternalGetWindowText(HWND hwnd, 
     1106int WIN32API InternalGetWindowText(HWND hwnd,
    11071107                                   LPWSTR lpString,
    11081108                                   INT    nMaxCount )
     
    12741274        windowDesktop->addRef();
    12751275        wndfrom = windowDesktop;
    1276     } 
     1276    }
    12771277    else {
    12781278        wndfrom = Win32BaseWindow::GetWindowFromHandle(hwndFrom);
     
    12881288        windowDesktop->addRef();
    12891289        wndto = windowDesktop;
    1290     } 
     1290    }
    12911291    else {
    12921292        wndto = Win32BaseWindow::GetWindowFromHandle(hwndTo);
     
    18871887        {
    18881888//            WND *wndPtr = WIN_FindWndPtr(hwndChild);
    1889            
     1889
    18901890//            WINPOS_ShowIconTitle( wndPtr, FALSE );
    1891                
     1891
    18921892            SetWindowPos( hwndChild, 0, x + (xspacing - GetSystemMetrics(SM_CXICON)) / 2,
    18931893                            y - yspacing - GetSystemMetrics(SM_CYICON)/2, 0, 0,
     
    20032003
    20042004  owner = Win32BaseWindow::GetWindowFromHandle(hWnd);
    2005   if(!owner) 
     2005  if(!owner)
    20062006  {
    20072007    dprintf(("GetLastActivePopup, window %x not found", hWnd));
     
    20132013  if (!IsWindow( hwndRetVal ))
    20142014    hwndRetVal = owner->getWindowHandle();
    2015  
     2015
    20162016  RELEASE_WNDOBJ(owner);
    2017  
     2017
    20182018  return hwndRetVal;
    20192019}
     
    20362036    }
    20372037    RELEASE_WNDOBJ(window);
    2038    
     2038
    20392039    return dwThreadId;
    20402040}
     
    22202220}
    22212221//******************************************************************************
    2222 //The GetWindowModuleFileName function retrieves the full path and file name of 
     2222//The GetWindowModuleFileName function retrieves the full path and file name of
    22232223//the module associated with the specified window handle.
    22242224//******************************************************************************
  • TabularUnified branches/gcc-kmk/src/user32/winicon.cpp

    r21356 r21720  
    4747#include <string.h>
    4848#include <winicon.h>
    49 #include <win\cursoricon.h>
     49#include <win/cursoricon.h>
    5050#include <objhandle.h>
    5151#include "dib.h"
    5252#include <heapstring.h>
    53 #include <win\virtual.h>
     53#include <win/virtual.h>
    5454#include "initterm.h"
    5555#include "oslibres.h"
     
    200200
    201201        /* Transfer the bitmap bits to the CURSORICONINFO structure */
    202         if(bmpAnd.bmBitsPixel > 1) 
     202        if(bmpAnd.bmBitsPixel > 1)
    203203        {//Our code expects b&w masks, so convert it first
    204204         //We could also use GetDIBits to do the conversion for us, but it returns
     
    216216
    217217            //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,
    219219                   hdcSrc, 0, 0, SRCCOPY);
    220220
     
    442442    if(hActiveCursorPM && hActiveCursorPM != OSLibWinQueryPointer()) {
    443443       dprintf(("Another app changed mouse cursor"));
    444        hActiveCursorPM = hActiveCursor = 0; 
     444       hActiveCursorPM = hActiveCursor = 0;
    445445    }
    446446    return hActiveCursor;
     
    593593    bmpXor.bmBitsPixel  = info->bBitsPerPixel;
    594594    bmpXor.bmBits       = NULL;
    595     ((CURSORICONINFO *)ptr)->hColorBmp = 
     595    ((CURSORICONINFO *)ptr)->hColorBmp =
    596596          OSLibWinCreatePointer(info, (char *)lpANDbits, (LPBITMAP_W)&bmpAnd, (char *)lpXORbits, (LPBITMAP_W)&bmpXor, fIcon == FALSE);
    597597#endif
     
    10851085//SvL: Must use CreateBitmap here as CreateDIBitmap converts data to 8bpp (GetObjectA info -> 8 bpp)
    10861086#if 1
    1087                     int linewidth; 
     1087                    int linewidth;
    10881088                    int orglinewidth;
    10891089
  • TabularUnified branches/gcc-kmk/src/user32/winmouse.cpp

    r21502 r21720  
    3232#include <commctrl.h>
    3333#include <debugtools.h>
    34 #include <win\mouse.h>
     34#include <win/mouse.h>
    3535#include "winmouse.h"
    3636#include "oslibmsg.h"
  • TabularUnified branches/gcc-kmk/src/user32/winproc.cpp

    r10602 r21720  
    1818#include <string.h>
    1919#include "callwrap.h"
    20 #include <win\winproc.h>
    21 #include <win\debugtools.h>
     20#include <win/winproc.h>
     21#include <win/debugtools.h>
    2222#include <heapcode.h>
    2323#include "win32wbase.h"
     
    307307    }
    308308    else  dprintf2(("CallWindowProcA %x %x %x %x %x (unknown proc)", func, hwnd, msg, wParam, lParam));
    309    
     309
    310310    if(!IsWindow(hwnd)) {
    311311        dprintf2(("CallWindowProcA, window %x not found", hwnd));
  • TabularUnified branches/gcc-kmk/src/user32/wndmsg.cpp

    r10511 r21720  
    1313#include <stdio.h>
    1414#include <string.h>
    15 #include <win\winmfcmsg.h>
     15#include <win/winmfcmsg.h>
    1616#include <spy.h>
    1717#include "wndmsg.h"
  • TabularUnified branches/gcc-kmk/src/win32k/kKrnlLib/src/d16Globl.c

    r9507 r21720  
    2828#define INCL_NOPMAPI
    2929#include <os2.h>
    30 #include "..\..\..\..\include\odinbuild.h" /* FIXME */
     30#include "../../../../include/odinbuild.h" /* FIXME */
    3131#include "options.h"
    3232
  • TabularUnified branches/gcc-kmk/src/win32k/libconv.c

    r4164 r21720  
    1818
    1919
    20 #include "include\omf.h"
     20#include "include/omf.h"
    2121
    2222int fCodeToCode16 = 0;
  • TabularUnified branches/gcc-kmk/src/wininet/wininet.cpp

    r9439 r21720  
    99
    1010#include <os2win.h>
    11 #include <win\wininet.h>
     11#include <win/wininet.h>
    1212
    1313//******************************************************************************
  • TabularUnified branches/gcc-kmk/src/winmm/initterm.cpp

    r6640 r21720  
    4242#include "winmmtype.h"
    4343#include "waveoutbase.h"
    44 #include <win\options.h>
     44#include <win/options.h>
    4545
    4646#define DBG_LOCALLOG    DBG_initterm
  • TabularUnified branches/gcc-kmk/src/winmm/initwinmm.cpp

    r21358 r21720  
    4646#include "winmmtype.h"
    4747#include "waveoutbase.h"
    48 #include <win\options.h>
     48#include <win/options.h>
    4949#include "initwinmm.h"
    5050#include <custombuild.h>
     
    122122        WaveOut::setDefaultVolume(dwVolume);
    123123
    124         if(fMMPMAvailable == TRUE) 
     124        if(fMMPMAvailable == TRUE)
    125125        {//if audio access wasn't disabled already, check if mmpm2 is installed
    126126            // try to load the MDM library, not MMPM directly!!!
     
    130130                // this system has no MMPM :-(
    131131                fMMPMAvailable = FALSE;
    132             } 
     132            }
    133133            else
    134134            {
     
    140140                {
    141141                    fMMPMAvailable = FALSE;
    142                 } 
     142                }
    143143                else
    144144                {
     
    161161        }
    162162
    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)
    164164        {
    165165            DWORD dwSize, dwType;
     
    184184            fMMPMAvailable = FALSE;
    185185        }
    186         else 
     186        else
    187187        {
    188188            // 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++)
    190190            {
    191191                if(!strncmp(szPDDName, szBuggyAudio[i], strlen(szBuggyAudio[i]))) {
  • TabularUnified branches/gcc-kmk/src/winmm/playsound.cpp

    r8470 r21720  
    2424#include <misc.h>
    2525#include <string.h>
    26 #include <win\debugtools.h>
     26#include <win/debugtools.h>
    2727
    2828#define DBG_LOCALLOG    DBG_playsound
     
    5151}
    5252
    53 static HMMIO    get_mmioFromProfile(UINT uFlags, LPCSTR lpszName) 
     53static HMMIO    get_mmioFromProfile(UINT uFlags, LPCSTR lpszName)
    5454{
    5555    char        str[128];
    5656    LPSTR       ptr;
    5757    HMMIO       hmmio;
    58    
     58
    5959    TRACE("searching in SystemSound List !\n");
    6060    GetProfileStringA("Sounds", (LPSTR)lpszName, "", str, sizeof(str));
     
    7878};
    7979
    80 static void CALLBACK PlaySound_Callback(HWAVEOUT hwo, UINT uMsg, 
    81                                         DWORD dwInstance, 
     80static void CALLBACK PlaySound_Callback(HWAVEOUT hwo, UINT uMsg,
     81                                        DWORD dwInstance,
    8282                                        DWORD dwParam1, DWORD dwParam2)
    8383{
     
    9898}
    9999
    100 static void PlaySound_WaitDone(struct playsound_data* s) 
     100static void PlaySound_WaitDone(struct playsound_data* s)
    101101{
    102102    for (;;) {
     
    106106        }
    107107        InterlockedIncrement((LPLONG)&s->dwEventCount);
    108        
     108
    109109        WaitForSingleObject(s->hEvent, INFINITE);
    110110    }
     
    141141        hmmio = 0;
    142142        if (uFlags & SND_ALIAS)
    143             if ((hmmio = get_mmioFromProfile(uFlags, lpszSoundName)) == 0) 
     143            if ((hmmio = get_mmioFromProfile(uFlags, lpszSoundName)) == 0)
    144144                return FALSE;
    145        
     145
    146146        if (uFlags & SND_FILENAME)
    147147            if ((hmmio=get_mmioFromFile(lpszSoundName)) == 0) return FALSE;
    148        
     148
    149149        if (PlaySound_SearchMode == 1) {
    150150            PlaySound_SearchMode = 0;
    151             if ((hmmio = get_mmioFromFile(lpszSoundName)) == 0) 
     151            if ((hmmio = get_mmioFromFile(lpszSoundName)) == 0)
    152152                hmmio = get_mmioFromProfile(uFlags, lpszSoundName);
    153153        }
    154        
     154
    155155        if (PlaySound_SearchMode == 2) {
    156156            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)
    159159                    hmmio = get_mmioFromProfile(uFlags, lpszSoundName);
    160160        }
     
    197197        goto errCleanUp;
    198198
    199     TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX\n", 
     199    TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX\n",
    200200          (LPSTR)&mmckInfo.ckid, (LPSTR)&mmckInfo.fccType, mmckInfo.cksize);
    201201
     
    216216    waveHdr[0].dwFlags = waveHdr[1].dwFlags = 0L;
    217217    waveHdr[0].dwBufferLength = waveHdr[1].dwBufferLength = bufsize;
    218     if (waveOutPrepareHeader(hWave, &waveHdr[0], sizeof(WAVEHDR)) || 
     218    if (waveOutPrepareHeader(hWave, &waveHdr[0], sizeof(WAVEHDR)) ||
    219219        waveOutPrepareHeader(hWave, &waveHdr[1], sizeof(WAVEHDR))) {
    220220        goto errCleanUp;
     
    260260}
    261261
    262 static DWORD WINAPI PlaySound_Thread(LPVOID arg) 
     262static DWORD WINAPI PlaySound_Thread(LPVOID arg)
    263263{
    264264    DWORD     res;
    265    
     265
    266266    for (;;) {
    267267        PlaySound_Playing = FALSE;
     
    273273        if (res != WAIT_OBJECT_0) continue;
    274274        PlaySound_Playing = TRUE;
    275        
     275
    276276        if ((PlaySound_fdwSound & SND_RESOURCE) == SND_RESOURCE) {
    277277            HRSRC       hRES;
     
    292292                continue;
    293293            }
    294             PlaySound_Result = proc_PlaySound((LPCSTR)ptr, 
     294            PlaySound_Result = proc_PlaySound((LPCSTR)ptr,
    295295                                              ((UINT16)PlaySound_fdwSound ^ SND_RESOURCE) | SND_MEMORY);
    296296            FreeResource(hGLOB);
     
    319319{
    320320    static LPSTR StrDup = NULL;
    321    
     321
    322322    TRACE("pszSound='%p' hmod=%04X fdwSound=%08lX\n",
    323323          pszSound, hmod, fdwSound);
    324    
     324
    325325    if (PlaySound_hThread == 0) { /* This is the first time they called us */
    326326        DWORD   id;
     
    331331        if ((PlaySound_hPlayEvent = CreateEventA(NULL, FALSE, FALSE, NULL)) == 0)
    332332            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)
    339339        return FALSE;
    340    
     340
    341341    /* Trying to stop if playing */
    342342    if (PlaySound_Playing) PlaySound_Stop = TRUE;
    343    
     343
    344344    /* Waiting playing thread to get ready. I think 10 secs is ok & if not then leave*/
    345345    if (WaitForSingleObject(PlaySound_hReadyEvent, 1000*10) != WAIT_OBJECT_0)
    346346        return FALSE;
    347    
    348     if (!pszSound || (fdwSound & SND_PURGE)) 
     347
     348    if (!pszSound || (fdwSound & SND_PURGE))
    349349        return FALSE; /* We stoped playing so leaving */
    350    
     350
    351351    if (PlaySound_SearchMode != 1) PlaySound_SearchMode = 2;
    352352    if (!(fdwSound & SND_ASYNC)) {
    353         if (fdwSound & SND_LOOP) 
     353        if (fdwSound & SND_LOOP)
    354354            return FALSE;
    355355        PlaySound_pszSound = pszSound;
     
    358358        PlaySound_Result = FALSE;
    359359        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)
    363363            return FALSE;
    364364        return PlaySound_Result;
     
    371371            StrDup = NULL;
    372372        }
    373         if (!((fdwSound & SND_MEMORY) || ((fdwSound & SND_RESOURCE) && 
     373        if (!((fdwSound & SND_MEMORY) || ((fdwSound & SND_RESOURCE) &&
    374374                                          !((DWORD)pszSound >> 16)) || !pszSound)) {
    375375            StrDup = HEAP_strdupA(GetProcessHeap(), 0,pszSound);
     
    403403    LPSTR       pszSoundA;
    404404    BOOL        bSound;
    405    
    406     if (!((fdwSound & SND_MEMORY) || ((fdwSound & SND_RESOURCE) && 
     405
     406    if (!((fdwSound & SND_MEMORY) || ((fdwSound & SND_RESOURCE) &&
    407407                                      !((DWORD)pszSound >> 16)) || !pszSound)) {
    408408        pszSoundA = HEAP_strdupWtoA(GetProcessHeap(), 0,pszSound);
    409409        bSound = PlaySoundA(pszSoundA, hmod, fdwSound);
    410410        HeapFree(GetProcessHeap(), 0, pszSoundA);
    411     } else 
     411    } else
    412412        bSound = PlaySoundA((LPCSTR)pszSound, hmod, fdwSound);
    413    
     413
    414414    return bSound;
    415415}
  • TabularUnified branches/gcc-kmk/src/winspool/stubs.cpp

    r21305 r21720  
    2121#include <odinwrap.h>
    2222#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>
    2626
    2727#include <stdio.h>
  • TabularUnified branches/gcc-kmk/src/winspool/winspool.cpp

    r21629 r21720  
    2929#include <odinwrap.h>
    3030#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>
    3434
    3535#include <stdio.h>
  • TabularUnified branches/gcc-kmk/src/wintrust/wintrust.cpp

    r21494 r21720  
    77#define CINTERFACE
    88
    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>
    1212#include <misc.h>
    1313
  • TabularUnified branches/gcc-kmk/src/wsock32/new/wsock32.h

    r3218 r21720  
    1717
    1818#define TCPV40HDRS
    19 #include <sys\socket.h>
    20 #include <sys\ioctl.h>
     19#include <sys/socket.h>
     20#include <sys/ioctl.h>
    2121#include <netdb.h>
    22 #include <netinet\in.h>
    23 #include <netinet\tcp.h>
     22#include <netinet/in.h>
     23#include <netinet/tcp.h>
    2424#include <nerrno.h>
    25 #include <sys\time.h>
     25#include <sys/time.h>
    2626
    2727#include <odinwrap.h>
     
    173173} _ws_protoent;
    174174
    175 typedef struct ws_servent 
     175typedef struct ws_servent
    176176{
    177177        char *  s_name;         /* official service name */
  • TabularUnified branches/gcc-kmk/src/wsock32/socketwrap.h

    r7461 r21720  
    22#define __SOCKETWRAP_H__
    33
    4 #include <sys\socket.h>
    5 #include <sys\ioctl.h>
     4#include <sys/socket.h>
     5#include <sys/ioctl.h>
    66#include <netdb.h>
    7 #include <netinet\in.h>
    8 #include <netinet\tcp.h>
     7#include <netinet/in.h>
     8#include <netinet/tcp.h>
    99#include <nerrno.h>
    1010
     
    1818
    1919    return yyrc;
    20 } 
     20}
    2121
    2222#undef  accept
     
    2929    addsockettolist(a);
    3030    SetFS(sel);
    31 } 
     31}
    3232
    3333#undef  addsockettolist
     
    4343
    4444    return yyrc;
    45 } 
     45}
    4646
    4747#undef  bind
     
    5757
    5858    return yyrc;
    59 } 
     59}
    6060
    6161#undef  connect
     
    7171
    7272    return yyrc;
    73 } 
     73}
    7474
    7575#undef  gethostid
     
    8585
    8686    return yyrc;
    87 } 
     87}
    8888
    8989#undef  getpeername
     
    9999
    100100    return yyrc;
    101 } 
     101}
    102102
    103103#undef  getsockname
     
    113113
    114114    return yyrc;
    115 } 
     115}
    116116
    117117#undef  getsockopt
     
    127127
    128128    return yyrc;
    129 } 
     129}
    130130
    131131#undef  ioctl
     
    141141
    142142    return yyrc;
    143 } 
     143}
    144144
    145145#undef  listen
     
    155155
    156156    return yyrc;
    157 } 
     157}
    158158
    159159#undef  recvmsg
     
    169169
    170170    return yyrc;
    171 } 
     171}
    172172
    173173#undef  recv
     
    183183
    184184    return yyrc;
    185 } 
     185}
    186186
    187187#undef  recvfrom
     
    197197
    198198    return yyrc;
    199 } 
     199}
    200200
    201201#undef  removesocketfromlist
     
    211211
    212212    return yyrc;
    213 } 
     213}
    214214
    215215#undef  select
     
    225225
    226226    return yyrc;
    227 } 
     227}
    228228
    229229#undef  send
     
    239239
    240240    return yyrc;
    241 } 
     241}
    242242
    243243#undef  sendmsg
     
    253253
    254254    return yyrc;
    255 } 
     255}
    256256
    257257#undef  sendto
     
    267267
    268268    return yyrc;
    269 } 
     269}
    270270
    271271#undef  setsockopt
     
    281281
    282282    return yyrc;
    283 } 
     283}
    284284
    285285#undef  sock_init
     
    295295
    296296    return yyrc;
    297 } 
     297}
    298298
    299299#undef  sock_errno
     
    306306    psock_errno(a);
    307307    SetFS(sel);
    308 } 
     308}
    309309
    310310#undef  psock_errno
     
    320320
    321321    return yyrc;
    322 } 
     322}
    323323
    324324#undef  socket
     
    334334
    335335    return yyrc;
    336 } 
     336}
    337337
    338338#undef  soclose
     
    348348
    349349    return yyrc;
    350 } 
     350}
    351351
    352352#undef  so_cancel
     
    362362
    363363    return yyrc;
    364 } 
     364}
    365365
    366366#undef  readv
     
    376376
    377377    return yyrc;
    378 } 
     378}
    379379
    380380#undef  writev
     
    390390
    391391    return yyrc;
    392 } 
     392}
    393393
    394394#undef  shutdown
     
    404404
    405405    return yyrc;
    406 } 
     406}
    407407
    408408#undef  Raccept
     
    418418
    419419    return yyrc;
    420 } 
     420}
    421421
    422422#undef  Rbind
     
    432432
    433433    return yyrc;
    434 } 
     434}
    435435
    436436#undef  Rconnect
     
    446446
    447447    return yyrc;
    448 } 
     448}
    449449
    450450#undef  Rgetsockname
     
    460460
    461461    return yyrc;
    462 } 
     462}
    463463
    464464#undef  Rlisten
     
    474474
    475475    return yyrc;
    476 } 
     476}
    477477
    478478#undef  gethostname
     
    488488
    489489    return yyrc;
    490 } 
     490}
    491491
    492492#undef  gethostbyname
     
    502502
    503503    return yyrc;
    504 } 
     504}
    505505
    506506#undef  gethostbyaddr
     
    516516
    517517    return yyrc;
    518 } 
     518}
    519519
    520520#undef  getnetbyname
     
    530530
    531531    return yyrc;
    532 } 
     532}
    533533
    534534#undef  getnetbyaddr
     
    544544
    545545    return yyrc;
    546 } 
     546}
    547547
    548548#undef  getservbyname
     
    558558
    559559    return yyrc;
    560 } 
     560}
    561561
    562562#undef  getservbyport
     
    572572
    573573    return yyrc;
    574 } 
     574}
    575575
    576576#undef  getprotobyname
     
    586586
    587587    return yyrc;
    588 } 
     588}
    589589
    590590#undef  getprotobynumber
     
    597597    sethostent(a);
    598598    SetFS(sel);
    599 } 
     599}
    600600
    601601#undef  sethostent
     
    611611
    612612    return yyrc;
    613 } 
     613}
    614614
    615615#undef  gethostent
     
    622622    endhostent();
    623623    SetFS(sel);
    624 } 
     624}
    625625
    626626#undef  endhostent
     
    633633    setnetent(a);
    634634    SetFS(sel);
    635 } 
     635}
    636636
    637637#undef  setnetent
     
    647647
    648648    return yyrc;
    649 } 
     649}
    650650
    651651#undef  getnetent
     
    658658    endnetent();
    659659    SetFS(sel);
    660 } 
     660}
    661661
    662662#undef  endnetent
     
    669669    setprotoent(a);
    670670    SetFS(sel);
    671 } 
     671}
    672672
    673673#undef  setprotoent
     
    683683
    684684    return yyrc;
    685 } 
     685}
    686686
    687687#undef  getprotoent
     
    694694    endprotoent();
    695695    SetFS(sel);
    696 } 
     696}
    697697
    698698#undef  endprotoent
     
    705705    setservent(a);
    706706    SetFS(sel);
    707 } 
     707}
    708708
    709709#undef  setservent
     
    719719
    720720    return yyrc;
    721 } 
     721}
    722722
    723723#undef  getservent
     
    730730    endservent();
    731731    SetFS(sel);
    732 } 
     732}
    733733
    734734#undef  endservent
     
    744744
    745745    return yyrc;
    746 } 
     746}
    747747
    748748#undef  tcp_h_errno
     
    758758
    759759    return yyrc;
    760 } 
     760}
    761761
    762762#undef  Rgethostbyname
  • TabularUnified branches/gcc-kmk/src/wsock32/wsock32.h

    r21417 r21720  
    1717
    1818#include "socketwrap.h"
    19 #include <sys\time.h>
     19#include <sys/time.h>
    2020
    2121#include <odinwrap.h>
  • TabularUnified branches/gcc-kmk/tools/install/odininst.cpp

    r21679 r21720  
    4747#include "debugtools.h"
    4848#include <odininst.h>
    49 #include <win\options.h>
     49#include <win/options.h>
    5050#include <versionos2.h>
    5151#include <time.h>
Note: See TracChangeset for help on using the changeset viewer.