Re: Conditionally declaring a BOOL in a .m file to be accessed in a .c function

2016-09-21 Thread Alex Zavatone
Please ignore those last two messages.   An offline device just came on and 
those were sent last night.

Thanks.

On Sep 20, 2016, at 11:04 PM, Alex Zavatone wrote:

> Unknown type.  But bool works.
> 
> Thanks, Ryan.  



___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Conditionally declaring a BOOL in a .m file to be accessed in a .c function

2016-09-21 Thread Alex Zavatone
Unknown type.  But bool works.

Thanks, Ryan.  

Sent from my iPad. Please pardon typos.

On Sep 20, 2016, at 11:58 AM, Ryan Dignard  wrote:

> This doesn't work?
> in the .m file at file scope
> BOOL condition = NO;
> 
> in the .c file at file scope
> extern BOOL condition;
> 
> On Tue, Sep 20, 2016 at 8:14 AM, Alex Zavatone  wrote:
>> I've been beating my head against the wall on this one.
>> 
>> I'm trying to evaluate a condition and declare or conditionally #define a 
>> macro within an Objective-C method function that can be checked within a c 
>> function.
>> 
>> Ideally, I'd just like a #define, but this
>>  like it to be a BOOL or, since this is going to be checked in c, a bool.
>> 
>> I've tried all sorts of combinations of #define and extern and checking with 
>> #if and #ifdef if I can even get this to compile.
>> 
>> The C file can't import the header of the Obj-C file or else I've got a few 
>> hundred errors on my hands.
>> 
>> I can't even get the #define to be recognized in the C file.
>> 
>> Any pointers here on how to proceed?
>> 
>> Goal:
>> I'm looking to declare or define a "thing" from a .m method that is scoped 
>> so that it can be checked within a c file that can not import the .h file 
>> for that .m file.
>> 
>> Will I need an intermediate file and class for this?
>> 
>> Thanks.
>> Alex Zavatone
>> ___
>> 
>> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>> 
>> Please do not post admin requests or moderator comments to the list.
>> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>> 
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/cocoa-dev/conceptuallyflawed%40gmail.com
>> 
>> This email sent to conceptuallyfla...@gmail.com
> 
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Conditionally declaring a BOOL in a .m file to be accessed in a .c function

2016-09-21 Thread Alex Zavatone
OK.  So how do I change that bool within a method in that .m file as the result 
of a condition?

Thanks.

Sent from my iPad. Please pardon typos.

On Sep 20, 2016, at 11:58 AM, Ryan Dignard  wrote:

> This doesn't work?
> in the .m file at file scope
> BOOL condition = NO;
> 
> in the .c file at file scope
> extern BOOL condition;
> 
> On Tue, Sep 20, 2016 at 8:14 AM, Alex Zavatone  wrote:
>> I've been beating my head against the wall on this one.
>> 
>> I'm trying to evaluate a condition and declare or conditionally #define a 
>> macro within an Objective-C method function that can be checked within a c 
>> function.
>> 
>> Ideally, I'd just like a #define, but this
>>  like it to be a BOOL or, since this is going to be checked in c, a bool.
>> 
>> I've tried all sorts of combinations of #define and extern and checking with 
>> #if and #ifdef if I can even get this to compile.
>> 
>> The C file can't import the header of the Obj-C file or else I've got a few 
>> hundred errors on my hands.
>> 
>> I can't even get the #define to be recognized in the C file.
>> 
>> Any pointers here on how to proceed?
>> 
>> Goal:
>> I'm looking to declare or define a "thing" from a .m method that is scoped 
>> so that it can be checked within a c file that can not import the .h file 
>> for that .m file.
>> 
>> Will I need an intermediate file and class for this?
>> 
>> Thanks.
>> Alex Zavatone
>> ___
>> 
>> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>> 
>> Please do not post admin requests or moderator comments to the list.
>> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>> 
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/cocoa-dev/conceptuallyflawed%40gmail.com
>> 
>> This email sent to conceptuallyfla...@gmail.com
> 
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Conditionally declaring a BOOL in a .m file to be accessed in a .c function

2016-09-20 Thread Ryan Dignard
This doesn't work?
in the .m file at file scope
BOOL condition = NO;

in the .c file at file scope
extern BOOL condition;

On Tue, Sep 20, 2016 at 8:14 AM, Alex Zavatone  wrote:

> I've been beating my head against the wall on this one.
>
> I'm trying to evaluate a condition and declare or conditionally #define a
> macro within an Objective-C method function that can be checked within a c
> function.
>
> Ideally, I'd just like a #define, but this
>  like it to be a BOOL or, since this is going to be checked in c, a bool.
>
> I've tried all sorts of combinations of #define and extern and checking
> with #if and #ifdef if I can even get this to compile.
>
> The C file can't import the header of the Obj-C file or else I've got a
> few hundred errors on my hands.
>
> I can't even get the #define to be recognized in the C file.
>
> Any pointers here on how to proceed?
>
> Goal:
> I'm looking to declare or define a "thing" from a .m method that is scoped
> so that it can be checked within a c file that can not import the .h file
> for that .m file.
>
> Will I need an intermediate file and class for this?
>
> Thanks.
> Alex Zavatone
> ___
>
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/cocoa-dev/
> conceptuallyflawed%40gmail.com
>
> This email sent to conceptuallyfla...@gmail.com
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com