Skip to content

Commit 6a9875e

Browse files
committed
make progress manager members private
1 parent 30ca034 commit 6a9875e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

FlashpointSecurePlayer/ProgressManager.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
namespace FlashpointSecurePlayer {
1313
public static class ProgressManager {
14-
public const uint PBM_SETSTATE = 0x0410;
15-
public static readonly IntPtr PBST_NORMAL = (IntPtr)1;
16-
public static readonly IntPtr PBST_ERROR = (IntPtr)2;
17-
public static readonly IntPtr PBST_PAUSED = (IntPtr)3;
14+
private const uint PBM_SETSTATE = 0x0410;
15+
private static readonly IntPtr PBST_NORMAL = (IntPtr)1;
16+
private static readonly IntPtr PBST_ERROR = (IntPtr)2;
17+
private static readonly IntPtr PBST_PAUSED = (IntPtr)3;
1818

1919
private enum TBPF {
2020
TBPF_NOPROGRESS = 0x00000000,

0 commit comments

Comments
 (0)