Solved Close Cinema 4D with C++ plugin??

Hi All,

Pretty straight forward. How can I quit the Cinema 4D application from my C++ plugin?
I cant find anything obvious in the documentation.

Thank you!

hi,

there's no function to close cinema4D.

You can use CallCommand

The id for the command Quit is 12104

CallCommand(12104)

Cheers,
Manuel

MAXON SDK Specialist

MAXON Registered Developer

That is a great idea! Thank you!