Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
7b188952
Commit
7b188952
authored
20 years ago
by
Jon Griffiths
Committed by
Alexandre Julliard
20 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Documentation fixes.
parent
5dc91e6c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/kernel/process.c
+25
-5
25 additions, 5 deletions
dlls/kernel/process.c
with
25 additions
and
5 deletions
dlls/kernel/process.c
+
25
−
5
View file @
7b188952
...
...
@@ -2233,7 +2233,7 @@ BOOL WINAPI TlsFree(
*
* RETURNS
* Success: Value stored in calling thread's TLS slot for index
* Failure: 0 and GetLastError returns NO_ERROR
* Failure: 0 and GetLastError
()
returns NO_ERROR
*/
LPVOID
WINAPI
TlsGetValue
(
DWORD
index
)
/* [in] TLS index to retrieve value for */
...
...
@@ -2690,7 +2690,9 @@ DWORD WINAPI GetProcessVersion( DWORD processid )
* minset [I] Specifies minimum working set size
* maxset [I] Specifies maximum working set size
*
* RETURNS STD
* RETURNS
* Success: TRUE
* Failure: FALSE
*/
BOOL
WINAPI
SetProcessWorkingSetSize
(
HANDLE
hProcess
,
SIZE_T
minset
,
SIZE_T
maxset
)
...
...
@@ -2838,7 +2840,7 @@ BOOL WINAPI ProcessIdToSessionId( DWORD procid, DWORD *sessionid_ptr )
*/
DWORD
WINAPI
RegisterServiceProcess
(
DWORD
dwProcessId
,
DWORD
dwType
)
{
/* I don't think that Wine needs to do anything in th
at
function */
/* I don't think that Wine needs to do anything in th
is
function */
return
1
;
/* success */
}
...
...
@@ -2847,8 +2849,18 @@ DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
* GetSystemMSecCount (SYSTEM.6)
* GetTickCount (KERNEL32.@)
*
* Returns the number of milliseconds, modulo 2^32, since the start
* of the wineserver.
* Get the number of milliseconds the system has been running.
*
* PARANS
* None.
*
* RETURNS
* The current tick count.
*
* NOTES
* -The value returned will wrap arounf every 2^32 milliseconds.
* -Under Windows, tick 0 is the moment at which the system is rebooted.
* Under Wine, tick 0 begins at the moment the wineserver process is started,
*/
DWORD
WINAPI
GetTickCount
(
void
)
{
...
...
@@ -2860,6 +2872,14 @@ DWORD WINAPI GetTickCount(void)
/***********************************************************************
* GetCurrentProcess (KERNEL32.@)
*
* Get a handle to the current process.
*
* PARAMS
* None.
*
* RETURNS
* A handle representing the current process.
*/
#undef GetCurrentProcess
HANDLE
WINAPI
GetCurrentProcess
(
void
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment