Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ab058ed

Browse files
author
Hirokazu Yamamoto
committed
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 *)
1 parent 340a62b commit ab058ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PC/_msi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ static PyObject*
1818
uuidcreate(PyObject* obj, PyObject*args)
1919
{
2020
UUID result;
21-
RPC_WSTR cresult;
21+
unsigned short *cresult;
2222
PyObject *oresult;
2323

2424
/* May return ok, local only, and no address.

0 commit comments

Comments
 (0)