Change over to GNU build system - part 1

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1056 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
jcalcote
2008-06-26 17:02:11 +00:00
parent 91f9f1b91c
commit e7548d8b4c
350 changed files with 4510 additions and 841 deletions
+23
View File
@@ -29,8 +29,29 @@
// Public includes
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "flaimsql.h"
// Collation bits
#define HAD_SUB_COLLATION 0x01 // Set if had sub-collating values-diacritics
#define HAD_LOWER_CASE 0x02 // Set if you hit a lowercase character
#define COMPOUND_MARKER 0x02 // Compound key marker between each piece
#define END_COMPOUND_MARKER 0x01 // Last of all compound markers - for post
#define NULL_KEY_MARKER 0x03
#define COLL_FIRST_SUBSTRING 0x03 // First substring marker
#define COLL_MARKER 0x04 // Marks place of sub-collation
#define SC_LOWER 0x00 // Only lowercase characters exist
#define SC_MIXED 0x01 // Lower/uppercase flags follow in next byte
#define SC_UPPER 0x02 // Only upper characters exist
#define SC_SUB_COL 0x03 // Sub-collation follows (diacritics|extCh)
#define UNK_UNICODE_CODE 0xFFFE // Used for collation
#define COLL_TRUNCATED 0x0C // This key piece has been truncated from original
#define MAX_COL_OPCODE COLL_TRUNCATED
#if defined( FLM_WIN)
// Conversion from XXX to YYY, possible loss of data
#pragma warning( disable : 4244)
@@ -4408,6 +4429,8 @@ public:
FLMUINT uiFileNumber,
char * pszPath);
FLMUINT64 FLMAPI getMaxFileSize( void);
static void bldSuperFileExtension(
FLMUINT uiFileNum,
char * pszFileExtension);