mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[PSDK]
- Fix packing for system restore point API types (STATEMGRSTATUS in particular). Fixes VC++ 2012 redist installer. CORE-8010 #resolve svn path=/trunk/; revision=66352
This commit is contained in:
parent
c845f97fbf
commit
888d828ea7
1 changed files with 9 additions and 5 deletions
|
@ -39,6 +39,8 @@ extern "C" {
|
|||
|
||||
/* Types */
|
||||
|
||||
#pragma pack(push, 1)
|
||||
|
||||
typedef struct _RESTOREPTINFOA {
|
||||
DWORD dwEventType;
|
||||
DWORD dwRestorePtType;
|
||||
|
@ -58,6 +60,8 @@ typedef struct _SMGRSTATUS {
|
|||
INT64 llSequenceNumber;
|
||||
} STATEMGRSTATUS, *PSTATEMGRSTATUS;
|
||||
|
||||
#pragma pack(pop)
|
||||
|
||||
/* Functions */
|
||||
|
||||
BOOL WINAPI SRSetRestorePointA(PRESTOREPOINTINFOA, PSTATEMGRSTATUS);
|
||||
|
|
Loading…
Reference in a new issue