mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
RPC_WSTR is not available Visual Studio 2003 or earlier.
(Maybe I should have defined RPC_WSTR on old compiler, but uuidcreate() is only place using it, so I simply replaced with unsigned short *)
This commit is contained in:
parent
340a62b9da
commit
ab058ed3df
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ static PyObject*
|
|||
uuidcreate(PyObject* obj, PyObject*args)
|
||||
{
|
||||
UUID result;
|
||||
RPC_WSTR cresult;
|
||||
unsigned short *cresult;
|
||||
PyObject *oresult;
|
||||
|
||||
/* May return ok, local only, and no address.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue