Re: Documentations on FRAMEWORKS
Re: Documentations on FRAMEWORKS
- Subject: Re: Documentations on FRAMEWORKS
- From: David Rio Vierra <email@hidden>
- Date: Wed, 25 Dec 2002 19:11:37 -1000
Try using nm on the framework's executable file. This should give you
a list of all the C and C++ functions, global vars, Obj-C classes and
methods in that framework, even if the headers aren't available.
You'll have to either pound out the headers yourself, or just declare
@class SomePrivateClass; and endure the compiler warnings. Note that C
function names from nm are prefixed by a single underscore by the
compiler, and you'll have to use the function's name minus the
underscore. Also note that C++ function names are mangled. You still
won't have any docs, and will have to find out how it all works by
trial-and-error.
On Wednesday, December 25, 2002, at 12:16 PM, Giovanni Donelli wrote:
Is there anyone that knows how to get the documentation on all the
framework available for example here
/System/Library/PrivateFrameworks
I was interested in having the possibility of use the framework
DesktopServicesPriv.framework
is there anyone that does know something?
GD
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.