News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

The auto keyword

Started by dezmand07, February 17, 2023, 08:08:40 AM

Previous topic - Next topic

dezmand07

Hello.
I switched from Visual Studio to Pelles C.
Why is the auto keyword implemented in Pelles C if it doesn't work?
auto hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
Quotewarning #2099: Missing type specifier; assuming 'int'.
error #2082: Invalid initialization type; expected 'int' but found 'void *'.
error #2168: Operands of '=' have incompatible types 'int' and 'void *'.

TimoVJL

HANDLE CreateToolhelp32Snapshot(  [in] DWORD dwFlags,  [in] DWORD th32ProcessID);
CreateToolhelp32Snapshot returns a HANDLE, not int.
May the source be with you

John Z

Hi dezmand07,

I think perhaps a misunderstanding of the use. 
The 'auto' keyword does not determine the type it determines the scope, location, initial value and where stored.

So the use of auto in the case below is missing the return value type HANDLE.

Attached is a helpful table on storage classes sourced from from https://www.geeksforgeeks.org/storage-classes-in-c/

John Z

dezmand07

Quote from: TimoVJL on February 17, 2023, 11:20:00 AM
HANDLE CreateToolhelp32Snapshot(  [in] DWORD dwFlags,  [in] DWORD th32ProcessID);
CreateToolhelp32Snapshot returns a HANDLE, not int.
Yes I know that. That is why I did not in vain mention about Visual Studio.
I thought that in Pelles C it's implemented.

dezmand07

Quote from: John Z on February 17, 2023, 11:20:52 AM
Attached is a helpful table on storage classes sourced from from https://www.geeksforgeeks.org/storage-classes-in-c/
Thank you. This clears things up a bit.

frankie

MS C is MS C, not a C standard compliant at all.
"It is better to be hated for what you are than to be loved for what you are not." - Andre Gide