mirror of
https://github.com/weiju/amiga-stuff
synced 2025-12-08 14:58:33 +00:00
11 lines
208 B
C
11 lines
208 B
C
#pragma once
|
|
#ifndef __FILEREQ_H__
|
|
#define __FILEREQ_H__
|
|
|
|
extern struct Requester *open_file(struct Window *window);
|
|
|
|
#define REQ_OK_BUTTON_ID 101
|
|
#define REQ_CANCEL_BUTTON_ID 102
|
|
|
|
#endif /* __FILEREQ_H__ */
|