mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
b917d826a4
Translation updates + mirroring support.
43 lines
756 B
C
43 lines
756 B
C
#ifndef _CLIPBRD_PCH_
|
|
#define _CLIPBRD_PCH_
|
|
|
|
// #pragma once
|
|
|
|
#include <limits.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winuser.h>
|
|
#include <wingdi.h>
|
|
#include <shellapi.h>
|
|
#include <htmlhelp.h>
|
|
#include <commdlg.h>
|
|
#include <winnls.h>
|
|
|
|
#include "resources.h"
|
|
#include "cliputils.h"
|
|
#include "fileutils.h"
|
|
#include "winutils.h"
|
|
#include "scrollutils.h"
|
|
|
|
#define MAX_STRING_LEN 255
|
|
#define DISPLAY_MENU_POS 2
|
|
#define CF_NONE 0
|
|
|
|
typedef struct _CLIPBOARD_GLOBALS
|
|
{
|
|
HINSTANCE hInstance;
|
|
HWND hMainWnd;
|
|
HWND hWndNext;
|
|
HMENU hMenu;
|
|
UINT uDisplayFormat;
|
|
UINT uCheckedItem;
|
|
UINT uLinesToScroll;
|
|
HBITMAP hDspBmp;
|
|
} CLIPBOARD_GLOBALS;
|
|
|
|
extern CLIPBOARD_GLOBALS Globals;
|
|
|
|
#endif /* _CLIPBRD_PCH_ */
|