代码搜索:writeable
找到约 203 项符合「writeable」的源代码
代码结果 203
www.eeworm.com/read/483770/1274887
asm mandel.asm
format PE64 GUI 5.0
entry start
include 'win64a.inc'
include 'ddraw64.inc'
section '.data' data readable writeable
_title db 'flat assembler DirectDraw application',0
_class db 'FDDR
www.eeworm.com/read/383333/2618366
h intdef.h
#ifndef _INT_DEF
#define _INT_DEF
// buffer status
#define BUF_EMPTY 0 // buffer is empty
#define BUF_FULL 1 // buffer is full
#define BUF_NORMAL 2 // buffer is readable and writeable
// op
www.eeworm.com/read/276828/10706169
asm minipad.asm
; Simple text editor - fasm example program
format PE GUI 4.0
entry start
include 'win32a.inc'
IDM_NEW = 101
IDM_EXIT = 102
IDM_ABOUT = 901
section '.data' data readable writeable
www.eeworm.com/read/373264/2766250
dbi banking.dbi
[Debug]
LastVirtual=uPSD3334D-40
LastReal=RLINK-ST-uPSD
Explore=1
Information=0
InfoSP=1
InfoExpr=&
SessionReal=1
[Breakpoint]
number=0
[51 Driver options]
Link_UseMonitor=0
Link_Writeable
www.eeworm.com/read/276828/10706223
asm template.asm
format PE64 GUI 5.0
entry start
include 'win64a.inc'
section '.data' data readable writeable
_title TCHAR 'Win64 program template',0
_class TCHAR 'FASMWIN64',0
wc WNDCLASSEX size
www.eeworm.com/read/483770/1274884
asm template.asm
format PE64 GUI 5.0
entry start
include 'win64a.inc'
section '.data' data readable writeable
_title TCHAR 'Win64 program template',0
_class TCHAR 'FASMWIN64',0
_error TCHAR 'Startu
www.eeworm.com/read/361692/10039265
asm sseroutines.asm
; Rabbit - 78.8
; Mandel - 90.5
format MS COFF
include '%fasminc%\win32a.inc'
section '.data' data readable writeable align 16
align 16
radius dd 4.0, 4.0, 4.0, 4.0
radiusd dq 4.0, 4.0
px1 d
www.eeworm.com/read/193974/5138442
py pr171.py
# PR#171. pdb's "c" command fails. The underlying problem is that frame
# objects didn't have a writeable f_trace attribute.
import sys
try: 1/0
except: frame = sys.exc_info()[2].tb_frame
del fra
www.eeworm.com/read/207991/4999928
mal tst3010.mal
#Parsing properties and keeping them around
function add(i:int{readonly},j:int{readonly}):int{writeable,safe};
j:= j+i;
return j;
end add;
function add2(i:int,j:int):int{safe};
k:= j+i;
return k;