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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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  }
Note: See TracChangeset for help on using the changeset viewer.