summaryrefslogtreecommitdiff
path: root/sal/osl/w32
diff options
context:
space:
mode:
authorMartin Maher <martin.maher@openoffice.org>2000-09-29 13:50:43 +0000
committerMartin Maher <martin.maher@openoffice.org>2000-09-29 13:50:43 +0000
commit71bda06a34e60932033964f97dd83a6e8826d01b (patch)
tree534811538a8360fb60d2e9783f1d7a1440bfe849 /sal/osl/w32
parent6bccb9f19e1a4eaaf419de53d8c71726b5d4ca88 (diff)
Code cleanup.
Diffstat (limited to 'sal/osl/w32')
-rw-r--r--sal/osl/w32/interlck.c26
-rw-r--r--sal/osl/w32/module.c41
-rw-r--r--sal/osl/w32/mutex.c35
-rw-r--r--sal/osl/w32/pipe.c71
-rw-r--r--sal/osl/w32/process.c150
-rw-r--r--sal/osl/w32/procimpl.h23
-rw-r--r--sal/osl/w32/profile.c240
-rw-r--r--sal/osl/w32/secimpl.h32
-rw-r--r--sal/osl/w32/security.c100
-rw-r--r--sal/osl/w32/semaphor.c38
-rw-r--r--sal/osl/w32/signal.c35
-rw-r--r--sal/osl/w32/sockimpl.h38
-rw-r--r--sal/osl/w32/system.h35
-rw-r--r--sal/osl/w32/thread.c106
-rw-r--r--sal/osl/w32/time.c32
15 files changed, 30 insertions, 972 deletions
diff --git a/sal/osl/w32/interlck.c b/sal/osl/w32/interlck.c
index d2170b7a672e..cd65575c0585 100644
--- a/sal/osl/w32/interlck.c
+++ b/sal/osl/w32/interlck.c
@@ -2,9 +2,9 @@
*
* $RCSfile: interlck.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:25:53 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -119,26 +119,4 @@ oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount*
}
#endif
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.6 2000/09/18 14:29:01 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.5 1999/10/27 15:13:35 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.4 1999/03/02 15:23:11 rh
-* #62469 MessageBox if Winsock failed, and new interlocked count in assembler
-*
-* Revision 1.3 1999/02/15 15:36:06 mm
-* #61896 W95 fix, mutex instead of sytem call
-*
-* Revision 1.2 1999/01/20 19:09:49 jsc
-* #61011# Typumstellung
-*
-* Revision 1.1 1998/09/22 14:57:55 rh
-* added interlock functions
-*
-*************************************************************************/
diff --git a/sal/osl/w32/module.c b/sal/osl/w32/module.c
index 2c0aeefe596e..aead2a185a50 100644
--- a/sal/osl/w32/module.c
+++ b/sal/osl/w32/module.c
@@ -2,9 +2,9 @@
*
* $RCSfile: module.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:26:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -147,41 +147,4 @@ void* SAL_CALL osl_getSymbolA(oslModule Module, const char *pszSymbolName)
return (void*) GetProcAddress((HINSTANCE)Module, pszSymbolName);
}
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.11 2000/09/18 14:29:01 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.10 2000/06/18 12:06:35 obr
-* function names have to be ascii
-*
-* Revision 1.9 2000/05/22 15:30:35 obr
-* moved some unicode wrapper for 9x to kernel9x.lib
-*
-* Revision 1.8 2000/03/31 15:55:14 rs
-* UNICODE-Changes
-*
-* Revision 1.7 2000/01/06 11:50:21 mfe
-* #71540# : for incompatible z'en
-*
-* Revision 1.6 2000/01/04 14:06:15 mfe
-* osl_loadModule takes 2nd parameter
-*
-* Revision 1.5 1999/10/27 15:13:35 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.4 1999/04/13 11:50:24 jsc
-* #62178# Keine ErrorBox, wenn eine dynamisch angezogene DLL eines Modules nicht gefunden wird und das Module durch loadOnCall angezogen wird
-*
-* Revision 1.3 1999/01/20 19:09:49 jsc
-* #61011# Typumstellung
-*
-* Revision 1.2 1997/07/15 19:02:03 rh
-* system.h inserted
-*
-* Revision 1.1 1997/07/03 10:04:32 rh
-* Module handling added
-*
-*************************************************************************/
diff --git a/sal/osl/w32/mutex.c b/sal/osl/w32/mutex.c
index 444aa0c98284..978cd9780bee 100644
--- a/sal/osl/w32/mutex.c
+++ b/sal/osl/w32/mutex.c
@@ -2,9 +2,9 @@
*
* $RCSfile: mutex.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:27:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -227,35 +227,4 @@ sal_Bool SAL_CALL osl_releaseMutex(oslMutex Mutex)
return sal_True;
}
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.9 2000/09/18 14:29:01 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.8 1999/10/27 15:13:35 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.7 1999/01/20 19:09:49 jsc
-* #61011# Typumstellung
-*
-* Revision 1.6 1998/12/22 13:05:22 ts
-* #60565# TryEnterCriticalSection() nicht unter W98
-*
-* Revision 1.5 1998/12/10 12:49:54 th
-* #55723# - tryToAquire sollte jetzt auch unter W95 funktionieren (Lock wird jetzt abgefragt)
-*
-* Revision 1.4 1998/05/15 11:53:39 rh
-* Fix for TryToAcquire
-*
-* Revision 1.3 1998/04/22 07:01:54 rh
-* Added internal mutex for TryToAcquire
-*
-* Revision 1.2 1998/03/21 12:36:16 rh
-* Implementation TryToAcquire for Windows 95
-*
-* Revision 1.1 1998/02/16 19:34:58 rh
-* Cleanup of ports, integration of Size_t, features for process
-*
-*************************************************************************/
diff --git a/sal/osl/w32/pipe.c b/sal/osl/w32/pipe.c
index 9b956772fe6d..7a4142daab3d 100644
--- a/sal/osl/w32/pipe.c
+++ b/sal/osl/w32/pipe.c
@@ -2,9 +2,9 @@
*
* $RCSfile: pipe.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:28:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -994,70 +994,3 @@ oslPipeError SAL_CALL osl_getLastPipeError(oslPipe Pipe)
return (Error);
}
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.21 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.20 2000/08/17 16:55:06 jbu
-* #77354# WIN98 pipe runs now, NT acceptPipe changed, so that accept retuns a null pipe on closing accepting pipe
-*
-* Revision 1.19 2000/05/29 16:35:50 hro
-* SRC591: Explicite SAL_CALL calling convention
-*
-* Revision 1.18 2000/05/22 15:29:08 obr
-* unicode changes channel/pipe
-*
-* Revision 1.17 2000/04/07 13:41:04 obr
-* Unicode changes
-*
-* Revision 1.16 1999/10/27 15:13:35 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.15 1999/04/29 10:09:11 ts
-* #65460# osl_acceptPipe() warted auf des anlegen des Windows in der PipeWindowProc
-*
-* Revision 1.14 1999/04/22 16:25:45 tlx
-* #64892# Flush beim destroyPipe rausgenommen wg. Deadlock
-*
-* Revision 1.13 1999/04/22 13:25:30 rh
-* #64126# Implemented TIMER for alice checking, and releasing of receiving threads
-*
-* Revision 1.12 1999/03/11 14:47:20 ts
-* #58701# RefCounting an oslPipeImpl gerichtet, DestroyWindow() im richtigen Thread, nPipes geschuetzt
-*
-* Revision 1.11 1999/03/04 10:01:23 rh
-* #62429 code cleanup
-*
-* Revision 1.10 1999/03/02 15:21:25 rh
-* #62321 use "UNKNOWN" as user name, if it could not be determined
-*
-* Revision 1.9 1999/02/09 09:34:32 rh
-* #61503, #61593 Bugfix: receiving any message on pipe window -> acceptPipe fails
-*
-* Revision 1.8 1999/01/20 19:09:49 jsc
-* #61011# Typumstellung
-*
-* Revision 1.7 1998/12/08 13:41:05 ts
-* #52712# Pipe-Bugs unter NT behoben
-*
-* Revision 1.6 1998/12/07 17:44:13 ts
-* #52712# pipes unter NT
-*
-* Revision 1.5 1998/12/07 16:04:09 rh
-* #53351# added system pipes and emulation for pipes via messages
-*
-* Revision 1.4 1998/12/07 14:07:01 ts
-* #52712# systempipes
-*
-* Revision 1.3 1998/12/04 15:11:51 ts
-* #52712# pipes
-*
-* Revision 1.2 1998/03/22 13:36:14 rh
-* Chnages for Win16
-*
-* Revision 1.1 1998/03/13 15:07:44 rh
-* Cleanup of enum chaos and implemntation of pipes
-*
-*************************************************************************/
diff --git a/sal/osl/w32/process.c b/sal/osl/w32/process.c
index ec806c5c72d5..ac24a562720e 100644
--- a/sal/osl/w32/process.c
+++ b/sal/osl/w32/process.c
@@ -2,9 +2,9 @@
*
* $RCSfile: process.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:30:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -770,149 +770,3 @@ oslSocket SAL_CALL osl_receiveResourcePipe(oslPipe Pipe)
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.47 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.46 2000/07/31 17:01:58 mfe
-* send and receive resource dummy implemented
-*
-* Revision 1.45 2000/06/19 08:36:44 obr
-* getenv implementation for nspr filehandle inheritance.
-*
-* Revision 1.44 2000/06/08 09:22:15 cd
-* change check for arguments
-*
-* Revision 1.43 2000/05/29 16:35:50 hro
-* SRC591: Explicite SAL_CALL calling convention
-*
-* Revision 1.42 2000/05/23 13:25:34 obr
-* don't link against shell32.lib
-*
-* Revision 1.41 2000/05/22 15:30:35 obr
-* moved some unicode wrapper for 9x to kernel9x.lib
-*
-* Revision 1.40 2000/05/16 16:50:44 hro
-* osl_getCommandArg[0] retrieves first argument rather than filename
-*
-* Revision 1.39 2000/05/16 14:35:37 obr
-* Unicode bugfixes
-*
-* Revision 1.38 2000/04/20 14:50:38 jsc
-* bugfix osl_executeProcess
-*
-* Revision 1.37 2000/04/07 13:41:04 obr
-* Unicode changes
-*
-* Revision 1.36 2000/03/31 16:36:42 rs
-* UNICODE-Changes
-*
-* Revision 1.35 2000/03/08 15:38:24 hro
-* #74005# Allocate extra space for quoting of arguments
-*
-* Revision 1.34 2000/03/03 12:06:11 hro
-* #72441# Quote arguments with spaces
-*
-* Revision 1.33 1999/11/19 15:22:38 ts
-* load user profile before executing processes as user
-*
-* Revision 1.32 1999/11/18 09:51:00 mfe
-* removed loadUserprofile completely
-*
-* Revision 1.31 1999/11/18 09:35:51 mfe
-* loadUserprofile moved from process.c to security.c
-*
-* Revision 1.30 1999/10/27 15:13:35 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.29 1999/10/21 16:18:35 ts
-* #68926# LoadUserProfile() before CreateProcessAsUser()
-*
-* Revision 1.28 1999/03/04 10:01:23 rh
-* #62429 code cleanup
-*
-* Revision 1.27 1999/01/20 19:09:50 jsc
-* #61011# Typumstellung
-*
-* Revision 1.26 1998/07/16 10:42:02 rh
-* Bugfix: getProcessInfo|Exitcode if Process is still active
-*
-* Revision 1.25 1998/04/22 07:03:07 rh
-* #49468, #49660 Bugfixes for NT starting COM-files and spaces in path
-*
-* Revision 1.24 1998/03/21 12:55:08 rh
-* In MSG_REL check if we type of resource match
-*
-* Revision 1.23 1998/03/13 15:07:44 rh
-* Cleanup of enum chaos and implemntation of pipes
-*
-* Revision 1.22 1998/03/12 14:24:38 jsc
-* osl_executeProcess korrigiert, malloc Groesse
-*
-* Revision 1.21 1998/03/06 15:42:11 rh
-* Added signal handling
-*
-* Revision 1.20 1998/02/16 19:34:59 rh
-* Cleanup of ports, integration of Size_t, features for process
-*
-* Revision 1.19 1997/11/28 15:34:41 ts
-* bugfix: bei weitergereichten Sockets wird der kindprozess solange blockiert, bis der vaterprozess diese Sockets closed
-*
-* Revision 1.18 1997/11/28 10:58:47 sb
-* osl_executeProcess calls strlen only for non NULL args
-*
-* Revision 1.17 1997/10/20 12:09:51 ts
-* StartProcessAsUser wieder reingenommen
-*
-* Revision 1.16 1997/10/17 16:03:10 ts
-* bugfix: osl_executeProcess programmname als erstes argument mitubebergeben
-*
-* Revision 1.15 1997/10/13 12:18:15 fm
-* *** empty log message ***
-*
-* Revision 1.14 1997/09/22 17:36:59 rh
-* terminate added
-*
-* Revision 1.13 1997/09/22 16:36:28 rh
-* terminate addedterminate added
-*
-* Revision 1.12 1997/09/17 21:14:36 rh
-* GetArgs
-*
-* Revision 1.11 1997/09/08 18:55:43 ts
-* *** empty log message ***
-*
-* Revision 1.10 1997/09/07 11:22:45 rh
-* *** empty log message ***
-*
-* Revision 1.9 1997/09/07 08:56:35 rh
-* exefile name
-*
-* Revision 1.8 1997/08/23 20:36:46 rh
-* return value for name resolving
-*
-* Revision 1.7 1997/07/24 16:52:34 rh
-* bugfixes
-*
-* Revision 1.6 1997/07/24 15:19:58 ts
-* *** empty log message ***
-*
-* Revision 1.5 1997/07/24 08:21:10 rh
-* *** empty log message ***
-*
-* Revision 1.4 1997/07/22 16:55:00 rh
-* Bugfix
-*
-* Revision 1.3 1997/07/22 14:29:34 rh
-* process added
-*
-* Revision 1.2 1997/07/21 19:13:15 rh
-* getSystemTime added
-*
-* Revision 1.1 1997/07/15 19:02:04 rh
-* system.h inserted
-*
-*************************************************************************/
-
diff --git a/sal/osl/w32/procimpl.h b/sal/osl/w32/procimpl.h
index cdbd6a10b6a3..d89c781834d9 100644
--- a/sal/osl/w32/procimpl.h
+++ b/sal/osl/w32/procimpl.h
@@ -2,9 +2,9 @@
*
* $RCSfile: procimpl.h,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:48:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,22 +79,3 @@ typedef struct _oslProcessImpl {
#endif
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.4 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.3 1999/10/27 15:13:36 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.2 1998/02/16 19:34:59 rh
-* Cleanup of ports, integration of Size_t, features for process
-*
-* Revision 1.1 1997/07/22 14:56:03 rh
-* added
-*
-*************************************************************************/
-
-
-
diff --git a/sal/osl/w32/profile.c b/sal/osl/w32/profile.c
index 4be4b0e292c0..4123610f7342 100644
--- a/sal/osl/w32/profile.c
+++ b/sal/osl/w32/profile.c
@@ -2,9 +2,9 @@
*
* $RCSfile: profile.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:31:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -2781,239 +2781,3 @@ static sal_Bool lookupProfile(const sal_Unicode *strPath, const sal_Unicode *str
}
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.75 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.74 2000/08/30 12:40:08 hro
-* #77887# Include kernel9x.h to access Windows 9x UNICODE wrapper functions
-*
-* Revision 1.73 2000/08/10 13:57:43 obr
-* #77463#
-*
-* Revision 1.72 2000/07/28 15:39:30 mm
-* compareTo
-*
-* Revision 1.71 2000/07/21 08:41:13 mfe
-* disabled soffice.ini asserts
-*
-* Revision 1.70 2000/07/12 10:41:28 mfe
-* #76736# : bug from change to unicode
-*
-* Revision 1.69 2000/07/03 12:38:34 mfe
-* closeProfile didn't wrote Profile
-*
-* Revision 1.68 2000/06/28 09:13:34 hro
-* Close temoprary profile
-*
-* Revision 1.67 2000/06/28 08:59:39 pl
-* tmp file is now closed properly
-*
-* Revision 1.66 2000/06/23 13:28:56 mfe
-* #76396# : open temp file with correct modes in DEFAULT mode
-*
-* Revision 1.65 2000/06/22 10:04:54 mfe
-* checks only for soffice.ini
-*
-* Revision 1.64 2000/06/22 08:44:18 mfe
-* write in temp file and renaming
-*
-* Revision 1.63 2000/06/20 08:38:21 pl
-* count string length correctly
-*
-* Revision 1.62 2000/06/16 14:34:27 mfe
-* assertions for clean profile write
-*
-* Revision 1.61 2000/06/08 13:57:19 obr
-* #76049# osl_openProfile fixed
-*
-* Revision 1.60 2000/06/08 09:10:31 cd
-* changed check for arguments
-*
-* Revision 1.59 2000/05/25 08:46:49 gh
-* UNICODE changes
-*
-* Revision 1.58 2000/05/17 09:54:07 obr
-* Uniode Bugfixes
-*
-* Revision 1.57 2000/05/16 07:46:05 obr
-* Unicode bugfixes
-*
-* Revision 1.56 2000/05/15 15:14:11 mba
-* first UniCode Bugfixes
-*
-* Revision 1.55 2000/04/07 13:30:44 obr
-* Unicode changes
-*
-* Revision 1.54 2000/04/06 12:50:48 mfe
-* #74820# : read_locked files were not closed properly
-*
-* Revision 1.53 2000/04/05 12:35:32 mfe
-* #74578# : ini files creation changed
-*
-* Revision 1.52 2000/04/05 12:10:08 mfe
-* #74578# : ini files creation changed
-*
-* Revision 1.51 2000/03/23 18:04:30 mfe
-* #74442# : false parameter type (i hate c)
-*
-* Revision 1.50 2000/03/23 16:17:25 mfe
-* #74442# : check return of acquireProfile
-*
-* Revision 1.49 2000/03/22 17:49:39 mfe
-* #73273# #72225# : new Option for writing via flush without lock
-*
-* Revision 1.48 2000/03/22 17:47:02 mfe
-* #73273# #72225# : new Option for writing via flush without lock
-*
-* Revision 1.47 2000/03/16 14:18:24 mm
-* #74230# setSUPD
-*
-* Revision 1.46 2000/03/06 13:41:15 mfe
-* #73273# : just one write(2) when storing profile.c
-* : clean implementation of osl_flushProfile
-*
-* Revision 1.45 2000/03/02 10:55:01 mfe
-* #73476# : reset memory of Sections and Lines
-*
-* Revision 1.44 2000/03/01 16:11:48 mfe
-* #72373# : buffer init in lookupprofile
-*
-* Revision 1.43 2000/02/11 14:39:29 as
-* #72933# readprofilestring return false for non existing keys
-*
-* Revision 1.42 2000/01/25 10:25:12 ts
-* #71746# reset free array element to 0
-*
-* Revision 1.41 2000/01/20 14:11:19 mfe
-* #70066# : an invalid Profile handle shall not be closed!
-*
-* Revision 1.40 2000/01/14 15:37:29 mfe
-* #71746# : assert array index IN bounds
-*
-* Revision 1.39 2000/01/11 16:18:27 mfe
-* #71746# : fix of memory leaks
-*
-* Revision 1.38 1999/12/20 14:28:25 mfe
-* #71093# : pass whole array to setEntry either
-*
-* Revision 1.37 1999/12/09 15:20:52 mfe
-* #70294# catch NULL pointer n _closeFile
-*
-* Revision 1.36 1999/12/01 16:05:31 mfe
-* #70340# : pass whole entry array to addEntry
-*
-* Revision 1.35 1999/11/24 09:50:54 mfe
-* empty profile line fix
-*
-* Revision 1.34 1999/11/16 11:19:13 mfe
-* more code clean up and #69879# TAB writing removed
-*
-* Revision 1.33 1999/11/12 14:03:45 mfe
-* putLine didn't return sal_True at the end
-*
-* Revision 1.32 1999/10/27 15:13:36 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.31 1999/09/27 17:14:41 mh
-* chg: SYNTAXXX
-*
-* Revision 1.30 1999/09/22 15:32:15 mfe
-* #68805# : sofficerc will now be searched in 'user' directory/folder
-*
-* Revision 1.29 1999/09/16 13:51:51 mfe
-* Bounds Checking Error in stripBlanks ... Fixed
-*
-* Revision 1.28 1999/06/01 10:49:29 ts
-* wenn nur noch ein Byte im Buffer frei ist, wurde ein beliebiges Zeichen in das Profile geschrieben
-*
-* Revision 1.27 1999/05/20 18:44:05 rh
-* #65095# Lookup of sversion.ini in ?^and ?$
-*
-* Revision 1.26 1999/04/28 14:20:44 dbo
-* #65477# 0-Ptr abgefangen; identisch gefixt fuer w32, unx, os2
-*
-* Revision 1.25 1999/04/27 15:59:31 rh
-* #65039# Check all entries in sversion.ini
-*
-* Revision 1.24 1999/04/22 13:48:07 rh
-* #65201# implement procedure for locating soffice.ini via sversion.ini
-*
-* Revision 1.23 1999/04/21 11:42:21 tlx
-* #65084# Bufferoverwrite in putLine
-*
-* Revision 1.22 1999/01/28 08:31:11 ts
-* #60461# TimeStamp richtig setzen und Abbruchbedingung bei getLine() berichtigt
-*
-* Revision 1.21 1999/01/20 19:09:50 jsc
-* #61011# Typumstellung
-*
-* Revision 1.20 1998/09/25 07:20:21 rh
-* branches: 1.20.2;
-* #56015# remove empty lines in profiles, when deleting a section
-*
-* Revision 1.19 1998/09/19 16:32:30 rh
-* #56688# Inidateien suchen
-*
-* Revision 1.18 1998/09/18 15:33:43 rh
-* #56761# neue locations f?r cfg/ini files
-*
-* Revision 1.17 1998/07/20 17:17:34 rh
-* #53072, #53073 Bugfixes for 5.0
-*
-* Revision 1.16 1998/05/04 10:44:05 rh
-* Added osl_getProfileSections, minor changes on Unix signals,
-* starting every process under unix in a separate thread,
-* fix unix thread problem, when freeing a handle of a running thread
-*
-* Revision 1.15 1998/03/13 15:07:44 rh
-* Cleanup of enum chaos and implemntation of pipes
-*
-* Revision 1.14 1998/02/24 18:41:22 rh
-* Moved getFullPath to new filesystem interface file.h
-*
-* Revision 1.13 1998/02/24 17:24:58 rh
-* Bugfix : getFullPathName at mountpoints and extensions in getProfileName
-*
-* Revision 1.12 1998/02/16 19:34:59 rh
-* Cleanup of ports, integration of Size_t, features for process
-*
-* Revision 1.11 1997/12/18 17:56:12 rh
-* Little tuning in closeFile
-*
-* Revision 1.10 1997/12/18 17:45:08 rh
-* BugFix in rewindFile
-*
-* Revision 1.9 1997/12/18 17:37:32 rh
-* Bugfix : Dot between extension in getProfileName
-*
-* Revision 1.8 1997/12/17 19:58:11 rh
-* Changed locking and minor bugfixes in buffering
-*
-* Revision 1.7 1997/12/16 14:16:59 rh
-* Added locking and CR/LF conversion
-*
-* Revision 1.6 1997/12/16 10:55:58 rh
-* Added locking and CR/LF conversion
-*
-* Revision 1.5 1997/09/18 13:20:50 ts
-* bugfix : osl_getProfileName
-*
-* Revision 1.4 1997/09/18 10:57:54 rh
-* getProfileName added
-*
-* Revision 1.3 1997/08/23 20:36:47 rh
-* return value for name resolving
-*
-* Revision 1.2 1997/07/29 08:40:26 rh
-* Bugfixes
-*
-* Revision 1.1 1997/07/17 11:02:31 rh
-* Header adapted and profile added
-*
-* Revision 1.20.2.1 1999/01/28 08:14:49 ts
-* #60461# FileStamp richtig setzen und Abbruchbedingung bei getLine() korrigiert
-*
-*************************************************************************/
diff --git a/sal/osl/w32/secimpl.h b/sal/osl/w32/secimpl.h
index 476e894b0c2a..e2b29c8bf308 100644
--- a/sal/osl/w32/secimpl.h
+++ b/sal/osl/w32/secimpl.h
@@ -2,9 +2,9 @@
*
* $RCSfile: secimpl.h,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:49:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -86,31 +86,3 @@ typedef struct _oslSecurityImpl {
#endif
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.8 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.7 2000/03/31 16:29:19 rs
-* UNICODE-Changes
-*
-* Revision 1.6 1999/11/18 09:35:51 mfe
-* loadUserprofile moved from process.c to security.c
-*
-* Revision 1.5 1999/10/27 15:13:36 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.4 1999/01/20 19:09:50 jsc
-* #61011# Typumstellung
-*
-* Revision 1.3 1998/02/16 19:34:59 rh
-* Cleanup of ports, integration of Size_t, features for process
-*
-* Revision 1.2 1997/10/17 16:01:36 ts
-* osl_logonUserOnFileServer hinzugefuegt
-*
-* Revision 1.1 1997/07/22 14:56:04 rh
-* added
-*
-*************************************************************************/
diff --git a/sal/osl/w32/security.c b/sal/osl/w32/security.c
index b7d9e60412a2..cf59f05fad80 100644
--- a/sal/osl/w32/security.c
+++ b/sal/osl/w32/security.c
@@ -2,9 +2,9 @@
*
* $RCSfile: security.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:32:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1057,99 +1057,3 @@ static sal_Bool SAL_CALL getUserNameImpl(oslSecurity Security, rtl_uString **str
return sal_False;
}
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.30 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.29 2000/08/28 14:04:03 cd
-* #78211# use correct malloc size for WNetGetUser call
-*
-* Revision 1.28 2000/06/08 10:07:55 cd
-* change LogonUserW call
-*
-* Revision 1.27 2000/06/08 09:16:36 cd
-* initialize string pointer with zero
-*
-* Revision 1.26 2000/05/30 11:29:42 obr
-* lstrcpyW, ... not functional in Win95
-*
-* Revision 1.25 2000/05/22 15:30:35 obr
-* moved some unicode wrapper for 9x to kernel9x.lib
-*
-* Revision 1.24 2000/05/16 07:46:05 obr
-* Unicode bugfixes
-*
-* Revision 1.23 2000/05/15 15:14:11 mba
-* first UniCode Bugfixes
-*
-* Revision 1.22 2000/03/31 16:28:09 rs
-* UNICODE-Changes
-*
-* Revision 1.21 1999/12/09 14:21:01 ts
-* #70662# m_hProfile not initialized
-*
-* Revision 1.20 1999/11/19 15:22:38 ts
-* load user profile before executing processes as user
-*
-* Revision 1.19 1999/11/18 09:35:51 mfe
-* loadUserprofile moved from process.c to security.c
-*
-* Revision 1.18 1999/10/27 15:13:36 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.17 1999/04/26 12:01:41 jsc
-* #65104# GetSpecialFolder angepasst
-*
-* Revision 1.16 1999/03/19 10:32:24 ts
-* #63572# Win95: logon user geht jetz immer, sdaemon hidden starten
-*
-* Revision 1.15 1999/03/04 10:01:23 rh
-* #62429 code cleanup
-*
-* Revision 1.14 1999/02/15 13:32:32 ts
-* #61287# unter W95 gilt jeder Benutzer als Administrator
-*
-* Revision 1.13 1999/02/15 13:26:10 ts
-* #61287# unter W95 gilt jeder Benutzer als Administrator
-*
-* Revision 1.12 1999/02/11 16:16:40 rh
-* #61556 Bugfix getUserIdent - convert SID to text string
-*
-* Revision 1.11 1999/01/20 19:09:50 jsc
-* #61011# Typumstellung
-*
-* Revision 1.10 1998/12/08 13:41:05 ts
-* #52712# Pipe-Bugs unter NT behoben
-*
-* Revision 1.9 1998/09/21 09:28:47 rh
-* #56688# Create special folder if not exists
-*
-* Revision 1.8 1998/09/19 16:32:30 rh
-* #56688# Inidateien suchen
-*
-* Revision 1.7 1998/09/18 15:33:44 rh
-* #56761# neue locations f?r cfg/ini files
-*
-* Revision 1.6 1998/03/13 15:07:45 rh
-* Cleanup of enum chaos and implemntation of pipes
-*
-* Revision 1.5 1998/02/16 19:34:59 rh
-* Cleanup of ports, integration of Size_t, features for process
-*
-* Revision 1.4 1997/10/21 14:23:09 ts
-* Abfrage, ob ein Benutzer Adminstratorrechte hat eingebaut
-*
-* Revision 1.3 1997/10/17 16:01:37 ts
-* osl_logonUserOnFileServer hinzugefuegt
-*
-* Revision 1.2 1997/07/24 15:19:59 ts
-* *** empty log message ***
-*
-* Revision 1.1 1997/07/23 12:00:13 rh
-* added
-*
-*************************************************************************/
-
-
diff --git a/sal/osl/w32/semaphor.c b/sal/osl/w32/semaphor.c
index 4b5ddafd6266..17d9ebbb2cbe 100644
--- a/sal/osl/w32/semaphor.c
+++ b/sal/osl/w32/semaphor.c
@@ -2,9 +2,9 @@
*
* $RCSfile: semaphor.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:33:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -160,37 +160,3 @@ sal_Bool SAL_CALL osl_releaseSemaphore(oslSemaphore Semaphore)
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.10 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.9 1999/10/27 15:13:36 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.8 1999/10/13 10:42:54 rt
-* undo last changes
-*
-* Revision 1.7 1999/10/11 12:47:09 rt
-* gcc for windows: syntax change
-*
-* Revision 1.6 1999/01/20 19:09:50 jsc
-* #61011# Typumstellung
-*
-* Revision 1.5 1998/07/16 10:41:02 rh
-* Beautify the source
-*
-* Revision 1.4 1998/07/16 10:25:15 rh
-* Change WaitForObject to MsgWaitForObject to process Messages while waiting
-*
-* Revision 1.3 1997/07/15 19:02:04 rh
-* system.h inserted
-*
-* Revision 1.2 1997/07/02 10:54:01 rh
-* Anpassung fuer Diagnose Macros
-*
-* Revision 1.1 1997/06/19 13:10:43 bho
-* first version of OSL.
-*
-*************************************************************************/
diff --git a/sal/osl/w32/signal.c b/sal/osl/w32/signal.c
index eb15feaf00c0..2808d9587470 100644
--- a/sal/osl/w32/signal.c
+++ b/sal/osl/w32/signal.c
@@ -2,9 +2,9 @@
*
* $RCSfile: signal.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:34:45 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -290,34 +290,3 @@ oslSignalAction SAL_CALL osl_raiseSignal(sal_Int32 UserSignal, void* UserData)
return (Action);
}
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.10 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.9 2000/04/18 09:49:32 hro
-* #72428# Fixed wrong compare of osPlatformID
-*
-* Revision 1.8 2000/04/06 10:24:28 hro
-* #72428# On Win95A Build 4.00.950 abort before returning from sinal handler
-*
-* Revision 1.6 1999/10/27 15:13:36 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.5 1999/04/22 07:52:49 rh
-* #63033# Deliver breakpoints via signal TSignal_DebugBreak
-*
-* Revision 1.4 1999/01/20 19:09:50 jsc
-* #61011# Typumstellung
-*
-* Revision 1.3 1998/03/13 15:07:45 rh
-* Cleanup of enum chaos and implemntation of pipes
-*
-* Revision 1.2 1998/03/06 16:36:27 rh
-* Added signal.c for W16 and deinit-routines
-*
-* Revision 1.1 1998/03/06 15:42:11 rh
-* Added signal handling
-*
-*************************************************************************/
diff --git a/sal/osl/w32/sockimpl.h b/sal/osl/w32/sockimpl.h
index 463229bb30b3..29db9eee9652 100644
--- a/sal/osl/w32/sockimpl.h
+++ b/sal/osl/w32/sockimpl.h
@@ -2,9 +2,9 @@
*
* $RCSfile: sockimpl.h,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:49:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -132,37 +132,3 @@ static sal_Bool __osl_attemptSocketDialupImpl (void);
#endif
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.10 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.9 2000/05/29 16:34:15 hro
-* SRC591: Explicite SAL_CALL calling convention
-*
-* Revision 1.8 1999/10/27 15:13:37 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.7 1999/02/16 20:09:23 mhu
-* Fixed WININET calling convention (WINAPI instead of __cdecl) (#49995#).
-*
-* Revision 1.6 1999/02/13 18:18:17 mhu
-* Added support for modem dialup handling (oslSocketDialupImpl) (#49995#).
-*
-* Revision 1.5 1998/03/06 15:42:12 rh
-* Added signal handling
-*
-* Revision 1.4 1997/11/28 15:34:42 ts
-* bugfix: bei weitergereichten Sockets wird der kindprozess solange blockiert, bis der vaterprozess diese Sockets closed
-*
-* Revision 1.3 1997/09/04 09:51:47 rh
-* Blockmode
-*
-* Revision 1.2 1997/07/15 19:34:39 rh
-* inserted #ifdefs
-*
-* Revision 1.1 1997/07/15 19:24:13 rh
-* *** empty log message ***
-*
-*************************************************************************/
diff --git a/sal/osl/w32/system.h b/sal/osl/w32/system.h
index 6be81bf18f60..b1957fa42f53 100644
--- a/sal/osl/w32/system.h
+++ b/sal/osl/w32/system.h
@@ -2,9 +2,9 @@
*
* $RCSfile: system.h,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:23 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:50:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -126,34 +126,3 @@ extern DWORD GetPlatformId();
#endif
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.9 2000/09/18 14:29:02 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.8 2000/05/22 15:29:08 obr
-* unicode changes channel/pipe
-*
-* Revision 1.7 1999/10/27 15:13:37 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.6 1999/10/11 12:57:57 rt
-* gcc for windows: includes and defines
-*
-* Revision 1.5 1998/09/18 15:33:44 rh
-* #56761# neue locations f?r cfg/ini files
-*
-* Revision 1.4 1998/07/21 07:36:21 mh
-* dynamische C-Runtime
-*
-* Revision 1.3 1998/02/16 19:35:00 rh
-* Cleanup of ports, integration of Size_t, features for process
-*
-* Revision 1.2 1997/12/16 14:16:59 rh
-* Added locking and CR/LF conversion
-*
-* Revision 1.1 1997/07/15 19:02:06 rh
-* system.h inserted
-*
-*************************************************************************/
diff --git a/sal/osl/w32/thread.c b/sal/osl/w32/thread.c
index 1beff6edc0e5..2f4093abbe8f 100644
--- a/sal/osl/w32/thread.c
+++ b/sal/osl/w32/thread.c
@@ -2,9 +2,9 @@
*
* $RCSfile: thread.c,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hro $ $Date: 2000-09-29 13:46:53 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:37:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -809,106 +809,4 @@ rtl_TextEncoding SAL_CALL osl_setThreadTextEncoding( rtl_TextEncoding Encoding )
}
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.2 2000/09/29 10:56:58 hro
-* osl_createThreadKeyData with callback function paramater, osl_setThreadKeyData works
-*
-* Revision 1.1.1.1 2000/09/18 15:17:23 hr
-* initial import
-*
-* Revision 1.30 2000/09/18 14:29:03 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.29 2000/06/09 13:26:45 hro
-* No TLS allocation via runtime library
-*
-* Revision 1.28 2000/04/03 09:44:54 hro
-* Missing return statement in osl_CoInitializeEx
-*
-* Revision 1.27 2000/03/31 16:44:52 rs
-* tools.c
-*
-* Revision 1.26 2000/03/27 09:13:26 hro
-* UNICODE New osl_getThreadTextEncoding
-*
-* Revision 1.25 2000/02/02 15:31:24 obr
-* #70588# load CoInitialzeEx on call
-*
-* Revision 1.24 1999/12/22 13:40:13 mfe
-* #71232# : shared createthread code for normal and suspended threads
-*
-* Revision 1.23 1999/10/27 15:13:37 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.22 1999/10/01 12:25:35 hro
-* #68919# Nur noch CoInitialize rufen da Win95 kein DCOM hat
-*
-* Revision 1.21 1999/09/16 14:58:19 hro
-* Every thread must initialize COM
-*
-* Revision 1.20 1999/03/19 09:06:38 jsc
-* #60455# osl_isCurrentThresad entfernt
-*
-* Revision 1.19 1999/01/20 19:09:50 jsc
-* #61011# Typumstellung
-*
-* Revision 1.18 1998/11/05 11:13:18 rh
-* #59037# Thread local storage implementation
-*
-* Revision 1.17 1998/07/22 10:57:11 rh
-* #53540 destroyThread : don't wait for termination, because of hangup in Win95
-*
-* Revision 1.16 1998/03/13 15:07:46 rh
-* Cleanup of enum chaos and implemntation of pipes
-*
-* Revision 1.15 1998/02/26 18:35:29 rh
-* Avoid unix zombies and rename oslThreadHandle to oslThread
-*
-* Revision 1.14 1998/02/16 19:35:01 rh
-* Cleanup of ports, integration of Size_t, features for process
-*
-* Revision 1.13 1997/10/16 16:25:50 rh
-* *** empty log message ***
-*
-* Revision 1.12 1997/10/13 18:41:04 rh
-* BugFix
-*
-* Revision 1.11 1997/08/22 14:47:48 rh
-* TimeValue inserted
-*
-* Revision 1.10 1997/07/25 11:37:15 rh
-* new arrangment for terminating threads
-*
-* Revision 1.9 1997/07/22 14:29:35 rh
-* process added
-*
-* Revision 1.8 1997/07/18 17:43:58 mhu
-* Renamed "osl_freeThreadHandle()" into "osl_freeHandleOfThread()"
-* (as declared in <osl/thread.h>).
-*
-* Revision 1.7 1997/07/17 11:02:32 rh
-* Header adapted and profile added
-*
-* Revision 1.6 1997/07/15 19:02:06 rh
-* system.h inserted
-*
-* Revision 1.5 1997/07/14 16:12:07 rh
-* *** empty log message ***
-*
-* Revision 1.4 1997/07/14 09:09:15 rh
-* Adaptions for killable sleeps
-*
-* Revision 1.3 1997/07/13 11:29:49 mhu
-* Corrected check for valid handle in osl_destroyThread.
-*
-* Revision 1.2 1997/07/02 10:54:03 rh
-* Anpassung fuer Diagnose Macros
-*
-* Revision 1.1 1997/06/19 13:10:45 bho
-* first version of OSL.
-*
-*************************************************************************/
-
diff --git a/sal/osl/w32/time.c b/sal/osl/w32/time.c
index a3533f059268..d3f76600ed23 100644
--- a/sal/osl/w32/time.c
+++ b/sal/osl/w32/time.c
@@ -2,9 +2,9 @@
*
* $RCSfile: time.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:17:24 $
+ * last change: $Author: martin.maher $ $Date: 2000-09-29 14:37:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -226,31 +226,3 @@ sal_Bool SAL_CALL osl_getSystemTimeFromLocalTime( TimeValue* pLocalTimeVal, Time
}
-/*************************************************************************
-*
-* $Log: not supported by cvs2svn $
-* Revision 1.8 2000/09/18 14:29:03 willem.vandorp
-* OpenOffice header added.
-*
-* Revision 1.7 2000/08/18 14:03:25 rs
-* new time functions
-*
-* Revision 1.6 2000/07/26 15:12:35 rs
-* DateTime functions
-*
-* Revision 1.5 1999/10/27 15:13:37 mfe
-* Change of Copyright, removed compiler warnings, code clean up, ...
-*
-* Revision 1.4 1999/01/20 19:09:51 jsc
-* #61011# Typumstellung
-*
-* Revision 1.3 1997/08/22 14:47:49 rh
-* TimeValue inserted
-*
-* Revision 1.2 1997/07/23 07:29:10 rh
-* micro to nanosecs
-*
-* Revision 1.1 1997/07/21 19:13:15 rh
-* getSystemTime added
-*
-*************************************************************************/