diff options
Diffstat (limited to 'Frameworks')
-rw-r--r-- | Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch b/Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch index 822e702a..04232f8a 100644 --- a/Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch +++ b/Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch @@ -23,9 +23,17 @@ #ifdef __OBJC__ #import <Foundation/Foundation.h> - // PostgreSQL interface + // libpq interface #import "libpq-fe.h" + // libpqtypes interface + #import "libpqtypes.h" + // Framework constants #import "FLXConstants.h" + + // Global types + #import "FLXPostgresTypes.h" + + #define _log(x) NSLog(@"PostgresKit: Warning: %@", x); #endif |