Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 166 of file subst.c.
Referenced by _tmain().
{ BOOL Result; TCHAR szFmtString[RC_STRING_MAX_SIZE] = {0}; LoadString(GetModuleHandle(NULL), IDS_INVALID_PARAMETER2, szFmtString, sizeof(szFmtString) / sizeof(szFmtString[0])); if (_tcslen(Drive) > 2) { _tprintf(szFmtString, Drive); return 1; } if (! IsSubstedDrive(Drive)) { _tprintf(szFmtString, Drive); return 1; } Result = DefineDosDevice(DDD_REMOVE_DEFINITION, Drive, NULL); if (! Result) { PrintError(GetLastError()); return 1; } return 0; }