HTML_FBSPAM.ASM


 
Thread Tools Search this Thread
Special Forums Cybersecurity Malware Advisories (RSS) HTML_FBSPAM.ASM
# 1  
Old 02-23-2011
HTML_FBSPAM.ASM

Low

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Solaris

Oracle ASM on Solaris 11.3

Hi Folks, I've just built a Solaris 11.3 server with a number of LDOM's, all good and well and not any serious issues so far. On our older Solaris 10 systems we ran Oracle 11g using ASM disks, these disks were the raw device meta disks and came in very nicely as "/dev/md/rdsk/dnn" all worked... (4 Replies)
Discussion started by: gull04
4 Replies

2. Programming

Asm

Hi guys, I am looking for ASM for dummies... I am given an assignment and IDK how to begin with... so perhaps any experts can link me resources I needed to equip. I did google search and find no information that I needed. Also, my program deals with UART (RS232) MIC P18F97J60. Hope some... (1 Reply)
Discussion started by: ment0smintz
1 Replies

3. Programming

[ASM] Adding SIGNED numbers?

Hi guys, I want to add a list of SIGNED numbers... but I don't know how to tell the computer to ADD THEM as signed, let me explain further: when adding 200 + (-100) , it becomes 100, but in asm the computer always add them as unsigned, so I always get the 300. Do I have to add them in a... (4 Replies)
Discussion started by: lamachejo
4 Replies

4. Solaris

SAN Storage for ASM

Hi, We are planning to setup a 10gR2 RAC and storage on ASM. We use Sun StorEdge SAN. The installation and configuration manual says to configure ASM diskgroups with raw devices (preferably raw disk not volumes). I dont really know if its possible to present raw disks to the Solaris... (4 Replies)
Discussion started by: esmgr
4 Replies

5. Solaris

Asm

I was installing oracle 10gr2 on solaris 10 x86 using asm as a result i have this two slices that i want to use as one disk group: these are /dev/rdsk/c1d1s3 and /dev/rdsk/c1d1s7. The result indicated /dev/rdsk/c1d1s3 as candidate and /dev/rdsk/c1d1s7 as foreign because slice 7 has a rdbms... (1 Reply)
Discussion started by: seyiisq
1 Replies

6. Shell Programming and Scripting

ASM Diskspace

Hi I want to check Oracle ASM disk status through a PERL script. Script flow would be like this ... 1. Its taking diskgroup name in the command line... 2. Connect to Oracle database 3. If connection error send a critical message. Plz replyyyyyyy...... (1 Reply)
Discussion started by: Harikrishna
1 Replies

7. Shell Programming and Scripting

asm

hi, how to convert unix shell scritps which has some mount points lcoations hardcoded to convert to oracle asm file systems? Thanks (0 Replies)
Discussion started by: rags_s11
0 Replies

8. Solaris

asm vs disksuite for oracle

I'm running solaris, with solstice disksuite. With other systems, i run veritas volume manager. My dba want to implement ASM with oracle 10g. Is it possible to create volumes with disksuite for ASM. Oracle want a volume name ex: vol1 My question is, what is the best STANDARD solution. ... (5 Replies)
Discussion started by: simquest
5 Replies
Login or Register to Ask a Question
al_findfirst(3alleg4)						  Allegro manual					     al_findfirst(3alleg4)

NAME
al_findfirst - Low-level function for searching files. Allegro game programming library. SYNOPSIS
#include <allegro.h> int al_findfirst(const char *pattern, struct al_ffblk *info, int attrib); DESCRIPTION
Low-level function for searching files. This function finds the first file which matches the given wildcard specification and file attributes (see above). The information about the file (if any) will be put in the al_ffblk structure which you have to provide. The al_ffblk structure looks like: struct al_ffblk { int attrib; - actual attributes of the file found time_t time; - modification time of file char name[512]; - name of file }; There is some other stuff in the structure as well, but it is there for internal use only. Example: struct al_ffblk info; if (al_findfirst("*.pcx", &info, FA_ALL) != 0) { /* Tell user there are no PCX files. */ return; } RETURN VALUE
The function returns non-zero if no match is found or if an error occurred and, in the latter case, sets `errno' accordingly. It returns zero if a match is found, allocating some memory for internal use in the structure. Therefore you have to close your search when you are finished to avoid memory leaks in your program. SEE ALSO
al_findnext(3alleg4), al_findclose(3alleg4), al_ffblk_get_size(3alleg4) Allegro version 4.4.2 al_findfirst(3alleg4)