diff options
author | Victor Stinner <vstinner@python.org> | 2022-11-23 14:44:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-23 14:44:42 (GMT) |
commit | 55bad199cf89f5488bcfd50b897d798afd57976e (patch) | |
tree | 13f145a35f4c3ebf8517fdc1e9909a8ab157a2c3 /PCbuild | |
parent | 81f7359f67a7166d57a10a3d5366406d9c85f1de (diff) | |
download | cpython-55bad199cf89f5488bcfd50b897d798afd57976e.zip cpython-55bad199cf89f5488bcfd50b897d798afd57976e.tar.gz cpython-55bad199cf89f5488bcfd50b897d798afd57976e.tar.bz2 |
gh-79315: Add Include/cpython/memoryobject.h header (#99723)
Move non-limited C API from Include/memoryobject.h to a new
Include/cpython/memoryobject.h header file.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 3c3ff40..f624343 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -155,6 +155,7 @@ <ClInclude Include="..\Include\cpython\listobject.h" /> <ClInclude Include="..\Include\cpython\longintrepr.h" /> <ClInclude Include="..\Include\cpython\longobject.h" /> + <ClInclude Include="..\Include\cpython\memoryobject.h" /> <ClInclude Include="..\Include\cpython\methodobject.h" /> <ClInclude Include="..\Include\cpython\modsupport.h" /> <ClInclude Include="..\Include\cpython\object.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 3ab7f31..f44a1ad 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -384,6 +384,9 @@ <ClInclude Include="..\Include\cpython\longobject.h"> <Filter>Include</Filter> </ClInclude> + <ClInclude Include="..\Include\cpython\memoryobject.h"> + <Filter>Include</Filter> + </ClInclude> <ClInclude Include="..\Include\cpython\odictobject.h"> <Filter>Include</Filter> </ClInclude> |