mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-14 16:20:57 +00:00
*** empty log message ***
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2354 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e0396854b6
commit
b72693fb4b
1 changed files with 24 additions and 0 deletions
|
@ -136,6 +136,30 @@ NSArray *printerTypesAvailable = nil;
|
||||||
|
|
||||||
extern NSString* NSPPDParseException;
|
extern NSString* NSPPDParseException;
|
||||||
|
|
||||||
|
#ifndef LIB_FOUNDATION_LIBRARY
|
||||||
|
|
||||||
|
static void __NSRetainNothing(void *table, const void *anObject)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static void __NSReleaseNothing(void *table, void *anObject)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static NSString* __NSDescribeObjects(void *table, const void *anObject)
|
||||||
|
{
|
||||||
|
return [(NSObject*)anObject description];
|
||||||
|
}
|
||||||
|
|
||||||
|
static const NSMapTableValueCallBacks NSNonRetainedObjectMapValueCallBacks = {
|
||||||
|
(void (*)(NSMapTable *, const void *))__NSRetainNothing,
|
||||||
|
(void (*)(NSMapTable *, void *))__NSReleaseNothing,
|
||||||
|
(NSString *(*)(NSMapTable *, const void *))__NSDescribeObjects
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif /* LIB_FOUNDATION_LIBRARY */
|
||||||
|
|
||||||
|
|
||||||
@interface NSPrinter (private)
|
@interface NSPrinter (private)
|
||||||
+ allocMaps;
|
+ allocMaps;
|
||||||
- initWithPPD:(NSString *)PPDstring
|
- initWithPPD:(NSString *)PPDstring
|
||||||
|
|
Loading…
Reference in a new issue