Subversion Repositories Kolibri OS

Rev

Rev 4428 | Rev 5676 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4428 Rev 5598
Line -... Line 1...
-
 
1
#ifndef INCLUDE_CLIPBOARD_H
-
 
2
#define INCLUDE_CLIPBOARD_H
-
 
3
 
-
 
4
#ifndef INCLUDE_KOLIBRI_H
-
 
5
#include "../lib/kolibri.h"
-
 
6
#endif
-
 
7
 
1
struct buffer_data
8
struct buffer_data
2
{
9
{
3
	dword	size;
10
	dword	size;
4
	dword	type;
11
	dword	type;
5
	dword	encoding;
12
	dword	encoding;
Line 48... Line 55...
48
{
55
{
49
	$mov eax, 54 
56
	$mov eax, 54 
50
	$mov ebx, 3
57
	$mov ebx, 3
51
	$int 0x40
58
	$int 0x40
52
}
59
}
53
60
 
-
 
61
#endif
-
 
62
54
63