blob: c254ed3af76767b94736873405cdeb162a44619e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
//
// Generic return codes for NSIS plugins
//
//
// Returned on the stack:
//
// GENERAL_ERROR: Most functions return an error message.
// SUCCESS: Most functions return an empty string.
//
// NOTE: While this is generally true, some functions only
// push a status code to the stack.
//
enum NsisStatus
{
GENERAL_ERROR = 0,
SUCCESS,
};
|