|
|
| version 1.5, 2005/03/19 20:46:07 | version 1.7, 2007/11/11 07:11:27 |
|---|---|
| Line 1 | Line 1 |
| #define NP2VIEW_MAX 8 | #define NP2VIEW_MAX 8 |
| typedef struct { | typedef struct { |
| Line 26 enum { | Line 27 enum { |
| }; | }; |
| typedef struct { | typedef struct { |
| DWORD type; | UINT32 type; |
| DWORD arg; | UINT32 arg; |
| DWORD size; | UINT32 size; |
| void *ptr; | void *ptr; |
| } VIEWMEMBUF; | } VIEWMEMBUF; |
| Line 36 typedef struct { | Line 37 typedef struct { |
| HWND hwnd; | HWND hwnd; |
| VIEWMEMBUF buf1; | VIEWMEMBUF buf1; |
| VIEWMEMBUF buf2; | VIEWMEMBUF buf2; |
| DWORD pos; | UINT32 pos; |
| DWORD maxline; | UINT32 maxline; |
| WORD step; | UINT16 step; |
| WORD mul; | UINT16 mul; |
| UINT8 alive; | UINT8 alive; |
| UINT8 type; | UINT8 type; |
| UINT8 lock; | UINT8 lock; |
| Line 54 extern const TCHAR np2viewfont[]; | Line 55 extern const TCHAR np2viewfont[]; |
| extern NP2VIEW_T np2view[NP2VIEW_MAX]; | extern NP2VIEW_T np2view[NP2VIEW_MAX]; |
| BOOL viewer_init(HINSTANCE hPreInst); | BOOL viewer_init(HINSTANCE hInstance); |
| void viewer_term(void); | void viewer_term(void); |
| void viewer_open(void); | void viewer_open(HINSTANCE hInstance); |
| void viewer_allclose(void); | void viewer_allclose(void); |
| void viewer_allreload(BOOL force); | void viewer_allreload(BOOL force); |