/* * Copyright 2009 Christoph von Wittich * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ #define WIN32_NO_STATUS #include #include #include #include #include #define NDEBUG #include BOOL WINAPI SRSetRestorePointA(PRESTOREPOINTINFOA pRestorePtSpec, PSTATEMGRSTATUS pStateMgrStatus) { RESTOREPOINTINFOW RPInfoW; DPRINT1("SRSetRestorePointA is unimplemented\n"); if (!pRestorePtSpec) return FALSE; RPInfoW.dwEventType = pRestorePtSpec->dwEventType; RPInfoW.dwRestorePtType = pRestorePtSpec->dwRestorePtType; RPInfoW.llSequenceNumber = pRestorePtSpec->llSequenceNumber; if (!MultiByteToWideChar( CP_ACP, 0, pRestorePtSpec->szDescription, -1, RPInfoW.szDescription, MAX_DESC_W)) return FALSE; return SRSetRestorePointW(&RPInfoW, pStateMgrStatus); } BOOL WINAPI SRSetRestorePointW(PRESTOREPOINTINFOW pRestorePtSpec, PSTATEMGRSTATUS pStateMgrStatus) { DPRINT1("SRSetRestorePointW is unimplemented\n"); if (!pStateMgrStatus) return FALSE; memset(pStateMgrStatus, 0, sizeof(STATEMGRSTATUS)); pStateMgrStatus->nStatus = ERROR_SERVICE_DISABLED; return FALSE; } DWORD WINAPI SRRemoveRestorePoint(DWORD dwNumber) { DPRINT1("SRRemoveRestorePoint is unimplemented\n"); return ERROR_SUCCESS; }