Browse Source

declare _SNETVERSIONDATA before use in structs.h

Fixes #455.
pull/460/head
Robin Eklind 6 years ago committed by Anders Jenbo
parent
commit
1ccbdc63fb
  1. 16
      structs.h

16
structs.h

@ -1305,6 +1305,14 @@ typedef struct _SNETPROGRAMDATA {
int lcid;
} _SNETPROGRAMDATA;
typedef struct _SNETVERSIONDATA {
int size;
char *versionstring;
char *executablefile;
char *originalarchivefile;
char *patcharchivefile;
} _SNETVERSIONDATA;
typedef struct _SNETUIDATA {
int size;
int uiflags;
@ -1337,14 +1345,6 @@ typedef struct _SNETUIDATA {
void(* changenamecallback)();
} _SNETUIDATA;
typedef struct _SNETVERSIONDATA {
int size;
char *versionstring;
char *executablefile;
char *originalarchivefile;
char *patcharchivefile;
} _SNETVERSIONDATA;
// TPDEF PTR FCN UCHAR SNETSPIBIND
// TPDEF PTR FCN UCHAR SNETSPIQUERY

Loading…
Cancel
Save