diff options
| author | Gene Cumm <gene.cumm@gmail.com> | 2010-06-26 22:51:39 -0400 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2010-06-26 20:52:58 -0700 |
| commit | 03791432c7207da9eb6c898bf15f003ab92ff10e (patch) | |
| tree | df8633fd7d4d2ac1014e9f17caf60d4a6b68019b /com32/include/syslinux | |
| parent | 2d3c94d753dc27040c4ea93550429e231a205181 (diff) | |
| download | syslinux-03791432c7207da9eb6c898bf15f003ab92ff10e.tar.gz | |
PM getcwd(); Fix COM32 getcwd
Implement getcwd() in the core; Fix COM32 getcwd() to use the new function.
This resolves the previous comment about COM32 getcwd() not working by
not using INT 22h AX=001Fh.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/include/syslinux')
| -rw-r--r-- | com32/include/syslinux/pmapi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/com32/include/syslinux/pmapi.h b/com32/include/syslinux/pmapi.h index f1036dfd..c325b62b 100644 --- a/com32/include/syslinux/pmapi.h +++ b/com32/include/syslinux/pmapi.h @@ -69,6 +69,7 @@ struct com32_pmapi { void (*reset_idle)(void); int (*chdir)(const char *); + char *(*getcwd)(char *, size_t); }; #endif /* _SYSLINUX_PMAPI_H */ |
