Win32Constants.st
author Merge Script
Sun, 07 Jun 2015 06:38:49 +0200
branchjv
changeset 18457 214d760f8247
parent 18011 deb0c3355881
child 19431 3e697e4bcbf5
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12672
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
     1
"
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
     2
 COPYRIGHT (c) 2009 by eXept Software AG
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
     3
              All Rights Reserved
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
     4
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
     5
 This software is furnished under a license and may be used
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
     6
 only in accordance with the terms of that license and with the
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
     8
 be provided or otherwise made available to, or used by, any
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
     9
 other person.  No title to or ownership of the software is
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    10
 hereby transferred.
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    11
"
12378
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
SharedPool subclass:#Win32Constants
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:'FILE_ATTRIBUTE_HIDDEN FILE_ATTRIBUTE_NORMAL
12379
3c014ba09285 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12378
diff changeset
    17
		FILE_ATTRIBUTE_TEMPORARY FILE_ATTRIBUTE_DIRECTORY
13193
Claus Gittinger <cg@exept.de>
parents: 12672
diff changeset
    18
		FILE_ATTRIBUTE_READONLY LOGPIXELSX LOGPIXELSY'
12378
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'OS-Windows'
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!Win32Constants class methodsFor:'documentation'!
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
12672
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    25
copyright
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    26
"
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    27
 COPYRIGHT (c) 2009 by eXept Software AG
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    28
              All Rights Reserved
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    29
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    30
 This software is furnished under a license and may be used
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    31
 only in accordance with the terms of that license and with the
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    33
 be provided or otherwise made available to, or used by, any
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    34
 other person.  No title to or ownership of the software is
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    35
 hereby transferred.
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    36
"
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    37
!
fc6fe9cbba31 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12379
diff changeset
    38
12378
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
documentation
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
"
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    contains (will, eventually) win32 OS constants.
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
! !
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!Win32Constants class methodsFor:'initialization'!
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
initialize
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    "Invoked at system start or when the class is dynamically loaded."
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
12379
3c014ba09285 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12378
diff changeset
    50
    FILE_ATTRIBUTE_READONLY := 1.
12378
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    FILE_ATTRIBUTE_HIDDEN := 2.
12379
3c014ba09285 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12378
diff changeset
    52
    FILE_ATTRIBUTE_DIRECTORY := 16.
12378
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    FILE_ATTRIBUTE_NORMAL := 128.
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    FILE_ATTRIBUTE_TEMPORARY := 256.
13193
Claus Gittinger <cg@exept.de>
parents: 12672
diff changeset
    55
Claus Gittinger <cg@exept.de>
parents: 12672
diff changeset
    56
    LOGPIXELSX := 88.
Claus Gittinger <cg@exept.de>
parents: 12672
diff changeset
    57
    LOGPIXELSY := 90.
Claus Gittinger <cg@exept.de>
parents: 12672
diff changeset
    58
Claus Gittinger <cg@exept.de>
parents: 12672
diff changeset
    59
    "Modified: / 24-12-2010 / 11:17:57 / cg"
12378
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
! !
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
!Win32Constants class methodsFor:'documentation'!
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
version_CVS
13193
Claus Gittinger <cg@exept.de>
parents: 12672
diff changeset
    65
    ^ '$Header: /cvs/stx/stx/libbasic/Win32Constants.st,v 1.4 2010-12-24 10:22:26 cg Exp $'
12378
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
! !
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
416690a1ffad initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
Win32Constants initialize!