Changeset 26677
- Timestamp:
- 2013-01-10T17:23:29+13:00 (10 years ago)
- Location:
- main/trunk/greenstone2/common-src/src/lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/greenstone2/common-src/src/lib/gdbmclass.cpp
r26653 r26677 46 46 // returns true if opened 47 47 bool gdbmclass::opendatabase (const text_t &filename, int mode, int num_retrys, 48 #ifdef _ _MSC_VER__48 #ifdef _MSC_VER 49 49 bool need_filelock 50 50 #else … … 105 105 char *namebuffer = gdbm_filename.getcstr(); 106 106 do { 107 #ifdef _ _MSC_VER__107 #ifdef _MSC_VER 108 108 gdbmfile = gdbm_open (namebuffer, block_size, gdbm_mode, 00664, NULL, (need_filelock) ? 1 : 0); 109 109 #else -
main/trunk/greenstone2/common-src/src/lib/gdbmclass.h
r26653 r26677 31 31 #include "dbclass.h" 32 32 33 #ifdef _ _MSC_VER__33 #ifdef _MSC_VER 34 34 35 35 #ifdef __cplusplus -
main/trunk/greenstone2/common-src/src/lib/gsdlconf.h
r26653 r26677 36 36 #endif 37 37 38 #if defined(_ _MSC_VER_)38 #if defined(_MSC_VER) 39 39 #include "../../win32cfg.h" 40 40 #else -
main/trunk/greenstone2/common-src/src/lib/gsdlsysfuncs.h
r26653 r26677 5 5 6 6 #ifdef HAVE_CONFIG_H 7 # ifdef _ _MSC_VER__7 # ifdef _MSC_VER 8 8 # include <win32cfg.h> 9 9 # else -
main/trunk/greenstone2/common-src/src/lib/gsdltools.cpp
r26653 r26677 281 281 282 282 283 #if defined(_ _MSC_VER__)283 #if defined(_MSC_VER) 284 284 // A very useful function to call to debug mysterious heap memory errors when 285 285 // their cause isn't clear in the Vis Studio debugger. Call it from various
Note:
See TracChangeset
for help on using the changeset viewer.