Changeset 2803 for trunk/src/kernel32
- Timestamp:
- Feb 16, 2000, 3:28:28 PM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/lang.cpp
r2802 r2803 1 /* $Id: lang.cpp,v 1.17 2000-02-16 14:27:07 sandervl Exp $ */ 1 2 /* 2 3 * Win32 language API functions for OS/2 -
trunk/src/kernel32/network.cpp
r2802 r2803 1 /* $Id: network.cpp,v 1.9 2000-02-16 14:27:08 sandervl Exp $ */ 1 2 /* 2 3 * Win32 Network apis -
trunk/src/kernel32/npipe.cpp
r2745 r2803 1 /* $Id: npipe.cpp,v 1. 6 2000-02-10 22:39:46 birdExp $ */1 /* $Id: npipe.cpp,v 1.7 2000-02-16 14:25:43 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Named pipes API … … 17 17 #include "debugtools.h" 18 18 #include "oslibdos.h" 19 20 #define DBG_LOCALLOG DBG_npipe 21 #include "dbglocal.h" 19 22 20 23 ODINDEBUGCHANNEL(KERNEL32-NPIPE) -
trunk/src/kernel32/obsolete.cpp
r99 r2803 1 /* $Id: obsolete.cpp,v 1. 2 1999-06-10 19:09:35 phallerExp $ */1 /* $Id: obsolete.cpp,v 1.3 2000-02-16 14:25:43 sandervl Exp $ */ 2 2 3 3 /* … … 12 12 #include <os2win.h> 13 13 14 #define DBG_LOCALLOG DBG_obsolete 15 #include "dbglocal.h" 16 14 17 //Api's that are obsolete, but some apps might still reference them 15 18 //(the Red Alert AUTORUN.EXE does) -
trunk/src/kernel32/os2heap.cpp
r1770 r2803 1 /* $Id: os2heap.cpp,v 1.1 3 1999-11-18 09:21:34 birdExp $ */1 /* $Id: os2heap.cpp,v 1.14 2000-02-16 14:25:43 sandervl Exp $ */ 2 2 3 3 /* … … 28 28 #include "initterm.h" 29 29 30 #define DBG_LOCALLOG DBG_os2heap 31 #include "dbglocal.h" 32 30 33 #ifndef HEAP_NO_SERIALIZE 31 34 #define HEAP_NO_SERIALIZE 1 -
trunk/src/kernel32/oslibdebug.cpp
r2280 r2803 1 /* $Id: oslibdebug.cpp,v 1. 1 1999-12-31 10:47:11sandervl Exp $ */1 /* $Id: oslibdebug.cpp,v 1.2 2000-02-16 14:25:44 sandervl Exp $ */ 2 2 3 3 /* … … 27 27 #include "oslibdebug.h" 28 28 29 #define DBG_LOCALLOG DBG_oslibdebug 30 #include "dbglocal.h" 31 29 32 #define DEBUG_QUEUENAME "\\QUEUES\\ODINTRACE\\" 30 33 #define DEBUG_QSEMNAME "\\SEM32\\ODINTRACEQ\\" -
trunk/src/kernel32/oslibdos.cpp
r2687 r2803 1 /* $Id: oslibdos.cpp,v 1.1 8 2000-02-08 22:29:15 sandervl Exp $ */1 /* $Id: oslibdos.cpp,v 1.19 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 /* 3 3 * Wrappers for OS/2 Dos* API … … 27 27 #include "dosqss.h" 28 28 29 #define DBG_LOCALLOG DBG_oslibdos 30 #include "dbglocal.h" 31 29 32 /*********************************** 30 33 * PH: fixups for missing os2win.h * … … 344 347 } 345 348 //****************************************************************************** 349 DWORD WIN32API GetEnvironmentVariableA(LPCSTR, LPSTR, DWORD ); 346 350 //****************************************************************************** 347 351 DWORD OSLibDosSearchPath(DWORD cmd, char *path, char *name, char *full_name, … … 377 381 case OSLIB_SEARCHENV: 378 382 { 379 PCSZ envstring; 380 CHAR szResult[CCHMAXPATH]; 381 382 if(DosScanEnv(path, &envstring) != 0) { 383 LPSTR envstring; 384 int envsize; 385 CHAR szResult[CCHMAXPATH]; 386 387 envsize = GetEnvironmentVariableA(path, NULL, 0); 388 envstring = (LPSTR)malloc(envsize+1); 389 GetEnvironmentVariableA(path, envstring, envsize); 390 if(DosSearchPath(SEARCH_IGNORENETERRS, envstring, 391 name, szResult, sizeof(szResult)) != 0) { 392 free(envstring); 383 393 return 0; 384 394 } 385 if(DosSearchPath(SEARCH_IGNORENETERRS, envstring, 386 name, szResult, sizeof(szResult)) != 0) { 387 return 0; 388 } 395 free(envstring); 389 396 strcpy(full_name, szResult); 390 397 return strlen(full_name); -
trunk/src/kernel32/oslibexcept.cpp
r1224 r2803 1 /* $Id: oslibexcept.cpp,v 1. 1 1999-10-09 15:03:23sandervl Exp $ */1 /* $Id: oslibexcept.cpp,v 1.2 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 /* 3 3 * Exception handler util. procedures … … 19 19 #include <exceptions.h> 20 20 21 #define DBG_LOCALLOG DBG_oslibexcept 22 #include "dbglocal.h" 23 21 24 //****************************************************************************** 22 25 //Dispatches OS/2 exception to win32 handler -
trunk/src/kernel32/oslibmisc.cpp
r2311 r2803 1 /* $Id: oslibmisc.cpp,v 1. 5 2000-01-03 21:36:11sandervl Exp $ */1 /* $Id: oslibmisc.cpp,v 1.6 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 3 3 /* … … 24 24 #include <misc.h> 25 25 26 #define DBG_LOCALLOG DBG_oslibmisc 27 #include "dbglocal.h" 28 26 29 /*********************************** 27 30 * PH: fixups for missing os2win.h * -
trunk/src/kernel32/resource.cpp
r2329 r2803 1 /* $Id: resource.cpp,v 1.1 4 2000-01-05 19:39:56sandervl Exp $ */1 /* $Id: resource.cpp,v 1.15 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 3 3 /* … … 17 17 #include <winexebase.h> 18 18 #include <windllbase.h> 19 20 #define DBG_LOCALLOG DBG_resource 21 #include "dbglocal.h" 19 22 20 23 //****************************************************************************** -
trunk/src/kernel32/stubs.cpp
r2301 r2803 1 /* $Id: stubs.cpp,v 1.1 8 2000-01-02 22:51:12sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.19 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 24 24 #include "stubs.h" 25 26 #define DBG_LOCALLOG DBG_stubs 27 #include "dbglocal.h" 25 28 26 29 -
trunk/src/kernel32/unicode.cpp
r2345 r2803 1 /* $Id: unicode.cpp,v 1.2 1 2000-01-06 20:07:10sandervl Exp $ */1 /* $Id: unicode.cpp,v 1.22 2000-02-16 14:25:45 sandervl Exp $ */ 2 2 3 3 /* … … 19 19 #include "codepage.h" 20 20 #include <unicode.h> 21 22 #define DBG_LOCALLOG DBG_unicode 23 #include "dbglocal.h" 21 24 22 25 /*static UconvObject uconv_object = NULL;*/ -
trunk/src/kernel32/wprocess.cpp
r2696 r2803 1 /* $Id: wprocess.cpp,v 1.6 7 2000-02-09 13:42:13sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.68 2000-02-16 14:25:46 sandervl Exp $ */ 2 2 3 3 /* … … 40 40 #include "mmap.h" 41 41 42 #define DBG_LOCALLOG DBG_wprocess 43 #include "dbglocal.h" 42 44 43 45 ODINDEBUGCHANNEL(KERNEL32-WPROCESS)
Note:
See TracChangeset
for help on using the changeset viewer.