static int dircmp(const void *c1, const void *c2)
{
- return stricmp(*(char **)c1, *(char **)c2);
+ return _stricmp(*(char **)c1, *(char **)c2);
}
while (wnd1 != NULL)
{
if (wnd1->extension &&
- stricmp(FileName, wnd1->extension) == 0)
+ _stricmp(FileName, wnd1->extension) == 0)
{
DfSendMessage(wnd1, DFM_SETFOCUS, TRUE, 0);
DfSendMessage(wnd1, DFM_RESTORE, 0, 0);
char msg[30];
sprintf(msg, "Delete %s?", fn);
if (DfYesNoBox(msg)) {
- unlink(wnd->extension);
+ _unlink(wnd->extension);
DfSendMessage(wnd, DFM_CLOSE_WINDOW, 0, 0);
}
}
FindHelp(Help);
if (ThisHelp != NULL) {
if (LastStack == NULL ||
- stricmp(Help, LastStack->hname)) {
+ _stricmp(Help, LastStack->hname)) {
/* ---- add the window to the history stack ---- */
ThisStack = DfCalloc(1,sizeof(struct HelpStack));
ThisStack->hname = DfMalloc(strlen(Help)+1);