file encoding to utf-8

This commit is contained in:
d1str4ught
2025-08-19 00:30:50 +02:00
parent be56f3f31a
commit ea712bec83
241 changed files with 1753 additions and 1753 deletions

View File

@@ -200,7 +200,7 @@ bool PyCallClassMemberFunc(PyObject* poClass, PyObject* poFunc, PyObject* poArgs
{
PyObject* poRet;
// NOTE : NULL 체크 추가.. - [levites]
// NOTE : NULL 체크 추가.. - [levites]
if (!poClass)
{
Py_XDECREF(poArgs);
@@ -218,7 +218,7 @@ bool PyCallClassMemberFunc(PyObject* poClass, const char* c_szFunc, PyObject* po
{
PyObject* poRet;
// NOTE : NULL 체크 추가.. - [levites]
// NOTE : NULL 체크 추가.. - [levites]
if (!poClass)
{
Py_XDECREF(poArgs);
@@ -236,7 +236,7 @@ bool PyCallClassMemberFunc_ByPyString(PyObject* poClass, PyObject* poFuncName, P
{
PyObject* poRet;
// NOTE : NULL 체크 추가.. - [levites]
// NOTE : NULL 체크 추가.. - [levites]
if (!poClass)
{
Py_XDECREF(poArgs);
@@ -285,9 +285,9 @@ bool PyCallClassMemberFunc(PyObject* poClass, const char* c_szFunc, PyObject* po
}
/*
* 이 함수를 직접 호출하지 않도록 한다.
* 부득이 하게 직접 호출할 경우에는 반드시 false 가 리턴 됐을 때
* Py_DECREF(poArgs); 를 해준다.
* 이 함수를 직접 호출하지 않도록 한다.
* 부득이 하게 직접 호출할 경우에는 반드시 false 가 리턴 됐을 때
* Py_DECREF(poArgs); 를 해준다.
*/
bool __PyCallClassMemberFunc_ByCString(PyObject* poClass, const char* c_szFunc, PyObject* poArgs, PyObject** ppoRet)
{