Kaydet (Commit) ab058ed3 authored tarafından Hirokazu Yamamoto's avatar Hirokazu Yamamoto

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 *)
üst 340a62b9
...@@ -18,7 +18,7 @@ static PyObject* ...@@ -18,7 +18,7 @@ static PyObject*
uuidcreate(PyObject* obj, PyObject*args) uuidcreate(PyObject* obj, PyObject*args)
{ {
UUID result; UUID result;
RPC_WSTR cresult; unsigned short *cresult;
PyObject *oresult; PyObject *oresult;
/* May return ok, local only, and no address. /* May return ok, local only, and no address.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment