代码搜索:access asp

找到约 10,000 项符合「access asp」的源代码

代码结果 10,000
www.eeworm.com/read/216802/4885197

c access.c

/* * Copyright 2002 Andriy Palamarchuk * * netapi32 access functions * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General
www.eeworm.com/read/216802/4887736

c access.c

/* $Id: access.c 21505 2006-04-07 13:03:59Z tretiakov $ * * PROJECT: ReactOS System Control Panel * LICENSE: GPL - See COPYING in the top level directory * FILE: lib
www.eeworm.com/read/216802/4887740

rbuild access.rbuild

www.eeworm.com/read/216802/4887745

rc access.rc

#include #include "resource.h" #define REACTOS_VERSION_DLL #define REACTOS_STR_FILE_DESCRIPTION "ReactOS Accessibility Control Panel\0" #define REACTOS_STR_INTERNAL_NAME "access\0"
www.eeworm.com/read/216802/4887748

h access.h

#ifndef __CPL_SYSDM_H #define __CPL_SYSDM_H typedef LONG (CALLBACK *APPLET_INITPROC)(VOID); typedef struct { int idIcon; int idName; int idDescription; APPLET_INITPROC AppletProc;
www.eeworm.com/read/216802/4887753

def access.def

LIBRARY cplsample.cpl EXPORTS CPlApplet@16 ; EOF
www.eeworm.com/read/216502/4890406

2 access.2

.TH ACCESS 2 .SH NAME access \- determine accessibility of file .SH SYNOPSIS .B access(name, mode) .br .B char *name; .SH DESCRIPTION .I Access checks the given file .I name for accessibility accordi
www.eeworm.com/read/216502/4891222

c access.c

# /* * * UNIX debugger * */ #include "defs.h" MSG ODDADR; MSG BADDAT; MSG BADTXT; MAP txtmap; MAP datmap; INT wtflag; STRING errflg; INT errno; INT pid; /* file handling and acces
www.eeworm.com/read/216502/4891770

s access.s

/ access(file, request) / test ability to access file in all indicated ways / 1 - read / 2 - write / 4 - execute .globl _access .globl csv, cret .comm _errno,2 .access = 33. _access: jsr r5,cs
www.eeworm.com/read/216502/4891847

c access.c

#include #include access(name, mode) { struct stat foo; return(stat(name, &foo)); }