Subversion Repositories filter_foundry

Rev

Rev 505 | Rev 536 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 505 Rev 518
Line 31... Line 31...
31
               ((num>>8)&0xff00) +     // move byte 2 to byte 1
31
               ((num>>8)&0xff00) +     // move byte 2 to byte 1
32
               ((num<<24)&0xff000000); // byte 0 to byte 3
32
               ((num<<24)&0xff000000); // byte 0 to byte 3
33
}
33
}
34
#endif
34
#endif
35
 
35
 
36
enum{
-
 
37
        BUFSIZE = 4L<<10,
36
#define BUFSIZE 4L<<10
38
        MAXLINE = 0x200,
37
#define MAXLINE 0x200
39
};
-
 
40
 
38
 
41
Boolean readparams_afs_pff(Handle h, TCHAR**reason){
39
Boolean readparams_afs_pff(Handle h, TCHAR**reason){
42
        Boolean res = false;
40
        Boolean res = false;
43
        char linebuf[MAXLINE + 1] = { 0 };
41
        char linebuf[MAXLINE + 1] = { 0 };
44
        char curexpr[MAXEXPR + 1] = { 0 };
42
        char curexpr[MAXEXPR + 1] = { 0 };