File: gfile.h

package info (click to toggle)
goattracker 2.76%2Bds-2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 3,156 kB
  • sloc: ansic: 28,700; cpp: 7,826; asm: 3,691; makefile: 136
file content (20 lines) | stat: -rw-r--r-- 394 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef GFILE_H
#define GFILE_H

#define MAX_DIRFILES 16384
#define MAX_FILENAME 60
#define MAX_PATHNAME 256

typedef struct
{
  char *name;
  int attribute;
} DIRENTRY;

void initpaths(void);
int fileselector(char *name, char *path, char *filter, char *title, int filemode);
void editstring(char *buffer, int maxlength);
int cmpname(char *string1, char *string2);

#endif