Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
622a343e
Commit
622a343e
authored
Jul 18, 2003
by
Jon Griffiths
Committed by
Alexandre Julliard
Jul 18, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement __p__wpgmptr, _wpgmptr.
Avoid using static storage for pgm pointers.
parent
f554f8f5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
10 deletions
+21
-10
data.c
dlls/msvcrt/data.c
+19
-8
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+2
-2
No files found.
dlls/msvcrt/data.c
View file @
622a343e
...
...
@@ -62,8 +62,8 @@ char **MSVCRT___initenv = 0;
MSVCRT_wchar_t
**
MSVCRT___winitenv
=
0
;
int
MSVCRT_timezone
;
int
MSVCRT_app_type
;
char
MSVCRT_pgm
[
MAX_PATH
];
char
*
MSVCRT__pgmptr
=
0
;
WCHAR
*
MSVCRT__wpgmptr
=
0
;
/* Get a snapshot of the current environment
* and construct the __p__environ array
...
...
@@ -156,6 +156,11 @@ unsigned int* __p__commode(void) { return &MSVCRT__commode; }
char
**
__p__pgmptr
(
void
)
{
return
&
MSVCRT__pgmptr
;
}
/***********************************************************************
* __p__wpgmptr (MSVCRT.@)
*/
WCHAR
**
__p__wpgmptr
(
void
)
{
return
&
MSVCRT__wpgmptr
;
}
/***********************************************************************
* __p__fmode (MSVCRT.@)
*/
unsigned
int
*
__p__fmode
(
void
)
{
return
&
MSVCRT__fmode
;
}
...
...
@@ -284,9 +289,13 @@ void msvcrt_init_args(void)
MSVCRT___initenv
=
msvcrt_SnapshotOfEnvironmentA
(
NULL
);
MSVCRT___winitenv
=
msvcrt_SnapshotOfEnvironmentW
(
NULL
);
MSVCRT_pgm
[
0
]
=
'\0'
;
GetModuleFileNameA
(
0
,
MSVCRT_pgm
,
sizeof
(
MSVCRT_pgm
)
/
sizeof
(
MSVCRT_pgm
[
0
]));
MSVCRT__pgmptr
=
MSVCRT_pgm
;
MSVCRT__pgmptr
=
HeapAlloc
(
GetProcessHeap
(),
0
,
MAX_PATH
);
if
(
MSVCRT__pgmptr
)
GetModuleFileNameA
(
0
,
MSVCRT__pgmptr
,
MAX_PATH
);
MSVCRT__wpgmptr
=
HeapAlloc
(
GetProcessHeap
(),
0
,
MAX_PATH
*
sizeof
(
WCHAR
));
if
(
MSVCRT__wpgmptr
)
GetModuleFileNameW
(
0
,
MSVCRT__wpgmptr
,
MAX_PATH
);
}
...
...
@@ -294,10 +303,12 @@ void msvcrt_init_args(void)
void
msvcrt_free_args
(
void
)
{
/* FIXME: more things to free */
if
(
MSVCRT___initenv
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT___initenv
);
if
(
MSVCRT___winitenv
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT___winitenv
);
if
(
MSVCRT__environ
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT__environ
);
if
(
MSVCRT__wenviron
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT__wenviron
);
if
(
MSVCRT___initenv
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT___initenv
);
if
(
MSVCRT___winitenv
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT___winitenv
);
if
(
MSVCRT__environ
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT__environ
);
if
(
MSVCRT__wenviron
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT__wenviron
);
if
(
MSVCRT__pgmptr
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT__pgmptr
);
if
(
MSVCRT__wpgmptr
)
HeapFree
(
GetProcessHeap
(),
0
,
MSVCRT__wpgmptr
);
}
/*********************************************************************
...
...
dlls/msvcrt/msvcrt.spec
View file @
622a343e
...
...
@@ -128,7 +128,7 @@
@ cdecl __p__winmajor()
@ cdecl __p__winminor()
@ cdecl __p__winver()
@
stub __p__wpgmptr #
()
@
cdecl __p__wpgmptr
()
@ stub __pioinfo #()
@ stub __pxcptinfoptrs #()
@ cdecl __set_app_type(long) MSVCRT___set_app_type
...
...
@@ -533,7 +533,7 @@
@ cdecl _wmktemp(wstr)
@ varargs _wopen(wstr long)
@ stub _wperror #(wstr)
@
stub _wpgmptr # extern
@
extern _wpgmptr MSVCRT__wpgmptr
@ stub _wpopen #(wstr wstr)
@ cdecl _wputenv(wstr)
@ cdecl _wremove(wstr)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment